index.uts 10.6 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

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
杜庆泉 已提交
25 26
import {
    onAppActivityDestroy,
27
	offAppActivityDestroy,
杜庆泉's avatar
杜庆泉 已提交
28
    onAppActivityPause,
29
	offAppActivityPause,
杜庆泉's avatar
杜庆泉 已提交
30
    onAppActivityResume,
31
	offAppActivityResume,
杜庆泉's avatar
杜庆泉 已提交
32
    onAppActivityBack,
33
	offAppActivityBack,
杜庆泉's avatar
杜庆泉 已提交
34 35
	onAppActivityResult,
	onAppTrimMemory,
36
	offAppTrimMemory,
杜庆泉's avatar
杜庆泉 已提交
37
	onAppConfigChange,
38
	offAppConfigChange,
杜庆泉's avatar
杜庆泉 已提交
39 40 41 42
	getUniActivity,
	getAppContext
} from "io.dcloud.uts.android";

43

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


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

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

杜庆泉's avatar
杜庆泉 已提交
86 87 88
/**
 * 清除周期任务
 */
杜庆泉's avatar
杜庆泉 已提交
89 90 91
export function clearIntervalTask(taskId:number) {
	
	clearInterval(taskId);
92
	return { name: "clearIntervalTask"};
杜庆泉's avatar
杜庆泉 已提交
93 94 95
}


96 97 98 99
/**
 * 实现一个添加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
杜庆泉 已提交
100 101 102 103
class AddUIRunnable extends Runnable {

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

杜庆泉's avatar
杜庆泉 已提交
111
        let decorView = getUniActivity()!.window.decorView;
杜庆泉's avatar
杜庆泉 已提交
112 113


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

杜庆泉's avatar
杜庆泉 已提交
118
        frameContent.addView(textView,layoutParam)
杜庆泉's avatar
杜庆泉 已提交
119 120 121 122

    }
};

123 124 125 126
/**
 * 实现一个移除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
杜庆泉 已提交
127 128 129 130
class RemoveUIRunnable extends Runnable {

    override run():void {

杜庆泉's avatar
杜庆泉 已提交
131
        let decorView = getUniActivity()!.getWindow().getDecorView();
杜庆泉's avatar
杜庆泉 已提交
132
        let frameContent = decorView.findViewById<FrameLayout>(android.R.id.content)
杜庆泉's avatar
杜庆泉 已提交
133 134 135
		
		let targetTV = frameContent.findViewWithTag<TextView>("helloText")
		frameContent.removeView(targetTV)
杜庆泉's avatar
杜庆泉 已提交
136 137 138 139

    }
};

140 141 142 143
/**
 * 实现添加view实例至decorview
 * 
 */
杜庆泉's avatar
杜庆泉 已提交
144
export function addViewToDecorView() {
杜庆泉's avatar
杜庆泉 已提交
145
    let uiRunable = new AddUIRunnable();
杜庆泉's avatar
杜庆泉 已提交
146 147 148
    getUniActivity()!.runOnUiThread(uiRunable)

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

打打卡夫卡's avatar
打打卡夫卡 已提交
157 158 159
/**
 * 用户输入对话框监听器
 */
杜庆泉's avatar
杜庆泉 已提交
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
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();
				
	}
}


打打卡夫卡's avatar
打打卡夫卡 已提交
182 183 184
/**
 * Dialog ui任务封装
 */
杜庆泉's avatar
杜庆泉 已提交
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 210 211 212 213 214 215 216 217 218
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
杜庆泉 已提交
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235



/**
 * 引用资源路径
 */
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) {
236 237 238 239 240 241
		// 没有数据,说明是自定义基座,则读取自定义基座的配置
		let customMetaId = metaData.getString("UTS_CUSTOM_LAUNCHER_META")
		if(customMetaId == null){
			return ""
		}
		return "自定义基座[UTS_CUSTOM_LAUNCHER_META]:" + customMetaId;
杜庆泉's avatar
杜庆泉 已提交
242
	}
243 244
	// 标准基座
    return "标准基座[DCLOUD_READ_PHONE_STATE]:" + adId;
杜庆泉's avatar
杜庆泉 已提交
245 246 247 248
}



249 250 251
/**
 * 引用资源路径
 */
杜庆泉's avatar
杜庆泉 已提交
252 253 254 255
export function getLogoPath(): string {
  return logo;
}

打打卡夫卡's avatar
打打卡夫卡 已提交
256 257 258 259
/**
 * 音频播放器对象
 */
let globalPlayer:MediaPlayer| null = null;
260 261 262
/**
 * 播放asset资源中的音频
 */
杜庆泉's avatar
杜庆泉 已提交
263
export function playAssetAudio() {
杜庆泉's avatar
杜庆泉 已提交
264
	
杜庆泉's avatar
杜庆泉 已提交
265 266
	let assetManager = getAppContext()!.getAssets();
	let afd = assetManager.openFd("free.mp3");
打打卡夫卡's avatar
打打卡夫卡 已提交
267 268 269 270 271 272 273
	
	if(globalPlayer == null){
		globalPlayer = new MediaPlayer();
		globalPlayer!.setDataSource(afd.getFileDescriptor(),afd.getStartOffset(), afd.getLength());
		globalPlayer!.prepare();
		globalPlayer!.start();
	}
杜庆泉's avatar
杜庆泉 已提交
274 275 276
	
}

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

打打卡夫卡's avatar
打打卡夫卡 已提交
278 279 280 281 282 283 284 285 286 287 288 289
/**
 * 停止播放asset资源中的音频
 */
export function stopAssetAudio() {
	
	if(globalPlayer != null){
		globalPlayer!.stop();
		globalPlayer = null;
	}
	
}

杜庆泉's avatar
杜庆泉 已提交
290 291 292 293 294 295 296 297 298 299
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;
	}
	
300 301 302 303 304 305 306 307 308 309 310 311 312 313
	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
杜庆泉 已提交
314
			 
315 316 317
		    }
		  }
	});
杜庆泉's avatar
杜庆泉 已提交
318 319 320 321 322 323 324 325 326 327
	
	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
杜庆泉 已提交
328 329


330 331 332 333
/**
 * 初始化应用生命周期监听
 * 
 */
杜庆泉's avatar
杜庆泉 已提交
334
export function initAppLifecycle(onLifecycleChange: (event:string) => void) {
杜庆泉's avatar
杜庆泉 已提交
335

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

337 338 339 340 341 342 343 344 345
	/**
	 * 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
杜庆泉 已提交
346
	
347 348 349 350 351 352 353 354 355
	/**
	 * 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
杜庆泉 已提交
356 357
	
	
358 359 360 361
	/**
	 * activity 销毁生命周期回调
	 * 说明文档:https://uniapp.dcloud.net.cn/plugin/uts-plugin.html#onappactivitydestroy
	 */
杜庆泉's avatar
杜庆泉 已提交
362
    onAppActivityDestroy(() => {
杜庆泉's avatar
杜庆泉 已提交
363
		let eventName = "onAppActivityDestroy";
杜庆泉's avatar
杜庆泉 已提交
364 365
		onLifecycleChange(eventName);
        console.log(eventName);
杜庆泉's avatar
杜庆泉 已提交
366
    });
杜庆泉's avatar
杜庆泉 已提交
367 368
	
	
369 370 371 372
	/**
	 * activity 失去焦点生命周期回调
	 * 说明文档:https://uniapp.dcloud.net.cn/plugin/uts-plugin.html#onappactivitypause
	 */
杜庆泉's avatar
杜庆泉 已提交
373
    onAppActivityPause(() => {
杜庆泉's avatar
杜庆泉 已提交
374
		let eventName = "onAppActivityPause" ;
杜庆泉's avatar
杜庆泉 已提交
375 376
		onLifecycleChange(eventName);
        console.log(eventName);
杜庆泉's avatar
杜庆泉 已提交
377
    });
378 379 380 381
	/**
	 * activity 得到焦点的周期回调
	 * 说明文档:https://uniapp.dcloud.net.cn/plugin/uts-plugin.html#onappactivityresume
	 */
杜庆泉's avatar
杜庆泉 已提交
382
    onAppActivityResume(() => {
杜庆泉's avatar
杜庆泉 已提交
383
		let eventName = "onAppActivityResume";
杜庆泉's avatar
杜庆泉 已提交
384 385
		onLifecycleChange(eventName);
        console.log(eventName);
杜庆泉's avatar
杜庆泉 已提交
386
    });
387 388 389 390
	/**
	 * activity 回退物理按键事件回调
	 * 说明文档:https://uniapp.dcloud.net.cn/plugin/uts-plugin.html#onappactivityback
	 */
杜庆泉's avatar
杜庆泉 已提交
391
    onAppActivityBack(() => {
杜庆泉's avatar
杜庆泉 已提交
392
		let eventName = "onAppActivityBack";
杜庆泉's avatar
杜庆泉 已提交
393 394
		onLifecycleChange(eventName);
        console.log(eventName);
杜庆泉's avatar
杜庆泉 已提交
395 396 397 398
    });

}

399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435

/**
 * 取消注册生命周期函数
 */
export function unRegLifecycle() {


	/**
	 * 说明文档:https://uniapp.dcloud.net.cn/plugin/uts-plugin.html#onapptrimmemory
	 */
	offAppTrimMemory();
	
	/**
	 * 说明文档:https://uniapp.dcloud.net.cn/plugin/uts-plugin.html#onAppConfigChange
	 */
	offAppConfigChange();
	
	/**
	 * 说明文档:https://uniapp.dcloud.net.cn/plugin/uts-plugin.html#onappactivitydestroy
	 */
    offAppActivityDestroy();
	
	/**
	 * 说明文档:https://uniapp.dcloud.net.cn/plugin/uts-plugin.html#onappactivitypause
	 */
    offAppActivityPause();
	
	/**
	 * 说明文档:https://uniapp.dcloud.net.cn/plugin/uts-plugin.html#onappactivityresume
	 */
    offAppActivityResume();
	/**
	 * activity 回退物理按键事件回调
	 */
    offAppActivityBack();

}