index.uts 9.1 KB
Newer Older
杜庆泉's avatar
杜庆泉 已提交
1 2 3 4 5
import Color from "android.graphics.Color";
import TextView from "android.widget.TextView";
import FrameLayout from "android.widget.FrameLayout";
import ViewGroup from "android.view.ViewGroup";
import Gravity from "android.view.Gravity";
杜庆泉's avatar
杜庆泉 已提交
6 7
import Runnable from 'java.lang.Runnable';
import MediaPlayer from 'android.media.MediaPlayer';
杜庆泉's avatar
杜庆泉 已提交
8
import Intent from 'android.content.Intent';
杜庆泉's avatar
杜庆泉 已提交
9

杜庆泉's avatar
杜庆泉 已提交
10
import logo from "../../static/logo.png";
杜庆泉's avatar
杜庆泉 已提交
11
import PackageManager from "android.content.pm.PackageManager";
杜庆泉's avatar
杜庆泉 已提交
12 13 14 15 16 17
import MediaStore from "android.provider.MediaStore";
import ActivityCompat from "androidx.core.app.ActivityCompat";
import Manifest from "android.Manifest";
import Activity from "android.app.Activity";
import Bitmap from "android.graphics.Bitmap";
import FileOutputStream from "java.io.FileOutputStream";
杜庆泉's avatar
杜庆泉 已提交
18

杜庆泉's avatar
杜庆泉 已提交
19 20 21 22 23 24 25

import Toast from 'android.widget.Toast';
import AlertDialog from 'android.app.AlertDialog';
import DialogInterface from 'android.content.DialogInterface';
import EditText from 'android.widget.EditText';


杜庆泉's avatar
杜庆泉 已提交
26 27 28 29 30
import {
    onAppActivityDestroy,
    onAppActivityPause,
    onAppActivityResume,
    onAppActivityBack,
杜庆泉's avatar
杜庆泉 已提交
31 32 33
	onAppActivityResult,
	onAppTrimMemory,
	onAppConfigChange,
杜庆泉's avatar
杜庆泉 已提交
34 35 36 37
	getUniActivity,
	getAppContext
} from "io.dcloud.uts.android";

38

杜庆泉's avatar
杜庆泉 已提交
39 40 41
/**
 * 定时任务参数封装
 */
杜庆泉's avatar
杜庆泉 已提交
42
type TimerOptions = {
43 44 45 46 47 48 49 50 51 52
	/**
	 * 定时任务开始的回调
	 * @res 回调参数
	 */
	start: (res: string) => void;
	/**
	* 定时任务执行的回调
	* @res 回调参数
	*/
	work: (res: string) => void;
杜庆泉's avatar
杜庆泉 已提交
53 54 55
};


杜庆泉's avatar
杜庆泉 已提交
56 57 58
/**
 * 执行延时任务
 */
杜庆泉's avatar
杜庆泉 已提交
59 60 61 62 63 64 65 66 67
export function doTimerTask(opts:TimerOptions) {
	opts.start('doTimerTask start');
	setTimeout(function() {
		opts.work("doTimerTask work");
	}, 2000);
  
  return { name: "doTimerTask" };
}

杜庆泉's avatar
杜庆泉 已提交
68 69 70
/**
 * 执行周期任务
 */
杜庆泉's avatar
杜庆泉 已提交
71 72
export function doIntervalTask(opts:TimerOptions) {
	
杜庆泉's avatar
杜庆泉 已提交
73
	let taskRet = setInterval(function() {
杜庆泉's avatar
杜庆泉 已提交
74 75 76 77 78 79 80
		opts.work("doIntervalTask work");
	}, 2000);
	opts.start('doIntervalTask start');
  
  return { name: "doIntervalTask",taskId:taskRet};
}

杜庆泉's avatar
杜庆泉 已提交
81 82 83
/**
 * 清除周期任务
 */
杜庆泉's avatar
杜庆泉 已提交
84 85 86
export function clearIntervalTask(taskId:number) {
	
	clearInterval(taskId);
87
	return { name: "clearIntervalTask"};
杜庆泉's avatar
杜庆泉 已提交
88 89 90
}


91 92 93 94
/**
 * 实现一个添加view的 Runnable类
 * 用法说明:https://uniapp.dcloud.net.cn/plugin/uts-plugin.html#%E5%8C%BF%E5%90%8D%E5%86%85%E9%83%A8%E7%B1%BB
 */
杜庆泉's avatar
杜庆泉 已提交
95 96 97 98
class AddUIRunnable extends Runnable {

    override run():void {
		
杜庆泉's avatar
杜庆泉 已提交
99 100 101
        let textView = new TextView(getUniActivity())
        textView.setText("HELLO WORLD");
        textView.textSize = 30.0.toFloat();
杜庆泉's avatar
杜庆泉 已提交
102
        textView.setBackgroundColor(Color.RED)
杜庆泉's avatar
杜庆泉 已提交
103 104
        textView.setTag("helloText")
        textView.setGravity(Gravity.CENTER)
杜庆泉's avatar
杜庆泉 已提交
105

杜庆泉's avatar
杜庆泉 已提交
106
        let decorView = getUniActivity()!.window.decorView;
杜庆泉's avatar
杜庆泉 已提交
107 108


杜庆泉's avatar
杜庆泉 已提交
109
        let frameContent = decorView.findViewById<FrameLayout>(android.R.id.content)
杜庆泉's avatar
杜庆泉 已提交
110
        let layoutParam = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,ViewGroup.LayoutParams.WRAP_CONTENT);
杜庆泉's avatar
杜庆泉 已提交
111 112
        layoutParam.topMargin = 200;

杜庆泉's avatar
杜庆泉 已提交
113
        frameContent.addView(textView,layoutParam)
杜庆泉's avatar
杜庆泉 已提交
114 115 116 117

    }
};

118 119 120 121
/**
 * 实现一个移除view的 Runnable类
 * 用法说明:https://uniapp.dcloud.net.cn/plugin/uts-plugin.html#%E5%8C%BF%E5%90%8D%E5%86%85%E9%83%A8%E7%B1%BB
 */
杜庆泉's avatar
杜庆泉 已提交
122 123 124 125
class RemoveUIRunnable extends Runnable {

    override run():void {

杜庆泉's avatar
杜庆泉 已提交
126
        let decorView = getUniActivity()!.getWindow().getDecorView();
杜庆泉's avatar
杜庆泉 已提交
127
        let frameContent = decorView.findViewById<FrameLayout>(android.R.id.content)
杜庆泉's avatar
杜庆泉 已提交
128 129 130
		
		let targetTV = frameContent.findViewWithTag<TextView>("helloText")
		frameContent.removeView(targetTV)
杜庆泉's avatar
杜庆泉 已提交
131 132 133 134

    }
};

135 136 137 138
/**
 * 实现添加view实例至decorview
 * 
 */
杜庆泉's avatar
杜庆泉 已提交
139
export function addViewToDecorView() {
杜庆泉's avatar
杜庆泉 已提交
140
    let uiRunable = new AddUIRunnable();
杜庆泉's avatar
杜庆泉 已提交
141 142 143
    getUniActivity()!.runOnUiThread(uiRunable)

}
144 145 146
/**
 * 实现从decorview上移除指定view
 */
杜庆泉's avatar
杜庆泉 已提交
147
export function removeViewToDecorView() {
杜庆泉's avatar
杜庆泉 已提交
148
    var uiRunable = new RemoveUIRunnable();
杜庆泉's avatar
杜庆泉 已提交
149 150 151 152
    getUniActivity()!.runOnUiThread(uiRunable)
}


杜庆泉's avatar
杜庆泉 已提交
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
class DialogListener extends DialogInterface.OnClickListener{
	
	inputET:EditText
	callback:UTSCallback
	
	constructor(et:EditText,cb:UTSCallback){
		super();
		this.callback = cb;
		this.inputET = et;
	}
	
	override onClick(_dialog:DialogInterface,_arg1:Int ):void {
		//数据获取
		let input = this.inputET.getText().toString()
		this.callback(input);
		Toast.makeText(getUniActivity(),input,
				Toast.LENGTH_LONG).show();
				
	}
}



class DialogUIRunnable extends Runnable {

	callback:UTSCallback

	constructor(success:UTSCallback){
		super();
		this.callback = success
	}

    override run():void {
		
		let et = new EditText(getUniActivity());
		et.setText("127.0.0.1");
		
		new AlertDialog.Builder(getUniActivity()).setTitle("请输入IP地址")
				.setIcon(android.R.drawable.ic_dialog_info).setView(et)
				.setPositiveButton("确定", new DialogListener(et,this.callback))
				.setNegativeButton("取消", null).show();

    }
};



/**
 * 通过对话框同步获取用户输入
 */
export function getUserInput(success: (res: string) => void) {
	
	let uiRunable = new DialogUIRunnable(success);
	getUniActivity()!.runOnUiThread(uiRunable)
	
}

杜庆泉's avatar
杜庆泉 已提交
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233



/**
 * 引用资源路径
 */
export function getMetaConfig(): string {
	//
	let packageName = getAppContext()!.getPackageName();
	let appInfo = getAppContext()!.getPackageManager()!.getApplicationInfo(packageName,PackageManager.GET_META_DATA)
	
	let metaData = appInfo.metaData
	if (metaData == null) {
		 return "";
	}
	let adId = metaData.getString("DCLOUD_READ_PHONE_STATE")
	if (adId == null) {
		 return "";
	}
    return adId;
}



234 235 236
/**
 * 引用资源路径
 */
杜庆泉's avatar
杜庆泉 已提交
237 238 239 240
export function getLogoPath(): string {
  return logo;
}

241 242 243
/**
 * 播放asset资源中的音频
 */
杜庆泉's avatar
杜庆泉 已提交
244
export function playAssetAudio() {
杜庆泉's avatar
杜庆泉 已提交
245
	
杜庆泉's avatar
杜庆泉 已提交
246 247 248
	let assetManager = getAppContext()!.getAssets();
	let afd = assetManager.openFd("free.mp3");
	let mediaPlayer = new MediaPlayer();
杜庆泉's avatar
杜庆泉 已提交
249 250 251 252 253 254
	mediaPlayer.setDataSource(afd.getFileDescriptor(),afd.getStartOffset(), afd.getLength());
	mediaPlayer.prepare();
	mediaPlayer.start();
	
}

杜庆泉's avatar
杜庆泉 已提交
255

杜庆泉's avatar
杜庆泉 已提交
256 257 258 259 260 261 262 263 264 265
export function goOtherActivity(imageDone: (event:string) => void):boolean {
	
	// 检查相关权限是否已经具备
	if (ActivityCompat.checkSelfPermission(getUniActivity()!, Manifest.permission.CAMERA) != PackageManager.PERMISSION_GRANTED) {
		// 不具备权限,申请权限,并且告知用户监听失败
		ActivityCompat.requestPermissions(getUniActivity()!, arrayOf(Manifest.permission.CAMERA), 1002)
		
		return false;
	}
	
266 267 268 269 270 271 272 273 274 275 276 277 278 279
	onAppActivityResult((requestCode: Int, resultCode: Int, data?: Intent) => {
		let eventName = "onAppActivityResult  -  requestCode:" + requestCode + " -resultCode:"+resultCode + " -data:"+JSON.stringify(data);
	    console.log(eventName);
		if ((requestCode == 1001) && (resultCode == Activity.RESULT_OK)) {
		    if (data != null) {    
			  let bundle = data.getExtras(); 
			  let mImageBitmap = bundle!.get("data") as Bitmap;
			  let bitmapPath = getUniActivity()!.getExternalCacheDir()!.getPath() + "/photo.png"
			  console.log(bitmapPath);
			  try{
				  mImageBitmap.compress(Bitmap.CompressFormat.PNG,100,new FileOutputStream(bitmapPath))
			  }catch(e){
			  }
			  imageDone(bitmapPath);
杜庆泉's avatar
杜庆泉 已提交
280
			 
281 282 283
		    }
		  }
	});
杜庆泉's avatar
杜庆泉 已提交
284 285 286 287 288 289 290 291 292 293
	
	let takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
	//resolveActivity 返回可处理 Intent 的第一个 Activity 组件
	if (takePictureIntent.resolveActivity(getUniActivity()!.getPackageManager()) != null) {
		getUniActivity()!.startActivityForResult(takePictureIntent, 1001);
	}
	
	return true;
	
}
杜庆泉's avatar
杜庆泉 已提交
294 295


296 297 298 299
/**
 * 初始化应用生命周期监听
 * 
 */
杜庆泉's avatar
杜庆泉 已提交
300
export function initAppLifecycle(onLifecycleChange: (event:string) => void) {
杜庆泉's avatar
杜庆泉 已提交
301

杜庆泉's avatar
杜庆泉 已提交
302

303 304 305 306 307 308 309 310 311
	/**
	 * application 内存不足的回调函数
	 * 说明文档:https://uniapp.dcloud.net.cn/plugin/uts-plugin.html#onapptrimmemory
	 */
	onAppTrimMemory((level:Number) => {
		let eventName = "onAppTrimMemory - " + level;
		onLifecycleChange(eventName);
	    console.log(eventName);
	});
杜庆泉's avatar
杜庆泉 已提交
312
	
313 314 315 316 317 318 319 320 321
	/**
	 * application 状态改变的回调函数
	 * 说明文档:https://uniapp.dcloud.net.cn/plugin/uts-plugin.html#onAppConfigChange
	 */
	onAppConfigChange((ret:UTSJSONObject) => {
		let eventName = "onAppConfigChange - " + JSON.stringify(ret);
		onLifecycleChange(eventName);
	    console.log(eventName);
	});
杜庆泉's avatar
杜庆泉 已提交
322 323
	
	
324 325 326 327
	/**
	 * activity 销毁生命周期回调
	 * 说明文档:https://uniapp.dcloud.net.cn/plugin/uts-plugin.html#onappactivitydestroy
	 */
杜庆泉's avatar
杜庆泉 已提交
328
    onAppActivityDestroy(() => {
杜庆泉's avatar
杜庆泉 已提交
329
		let eventName = "onAppActivityDestroy";
杜庆泉's avatar
杜庆泉 已提交
330 331
		onLifecycleChange(eventName);
        console.log(eventName);
杜庆泉's avatar
杜庆泉 已提交
332
    });
杜庆泉's avatar
杜庆泉 已提交
333 334
	
	
335 336 337 338
	/**
	 * activity 失去焦点生命周期回调
	 * 说明文档:https://uniapp.dcloud.net.cn/plugin/uts-plugin.html#onappactivitypause
	 */
杜庆泉's avatar
杜庆泉 已提交
339
    onAppActivityPause(() => {
杜庆泉's avatar
杜庆泉 已提交
340
		let eventName = "onAppActivityPause" ;
杜庆泉's avatar
杜庆泉 已提交
341 342
		onLifecycleChange(eventName);
        console.log(eventName);
杜庆泉's avatar
杜庆泉 已提交
343
    });
344 345 346 347
	/**
	 * activity 得到焦点的周期回调
	 * 说明文档:https://uniapp.dcloud.net.cn/plugin/uts-plugin.html#onappactivityresume
	 */
杜庆泉's avatar
杜庆泉 已提交
348
    onAppActivityResume(() => {
杜庆泉's avatar
杜庆泉 已提交
349
		let eventName = "onAppActivityResume";
杜庆泉's avatar
杜庆泉 已提交
350 351
		onLifecycleChange(eventName);
        console.log(eventName);
杜庆泉's avatar
杜庆泉 已提交
352
    });
353 354 355 356
	/**
	 * activity 回退物理按键事件回调
	 * 说明文档:https://uniapp.dcloud.net.cn/plugin/uts-plugin.html#onappactivityback
	 */
杜庆泉's avatar
杜庆泉 已提交
357
    onAppActivityBack(() => {
杜庆泉's avatar
杜庆泉 已提交
358
		let eventName = "onAppActivityBack";
杜庆泉's avatar
杜庆泉 已提交
359 360
		onLifecycleChange(eventName);
        console.log(eventName);
杜庆泉's avatar
杜庆泉 已提交
361 362 363 364
    });

}