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

import Toast from 'android.widget.Toast';
import AlertDialog from 'android.app.AlertDialog';
import DialogInterface from 'android.content.DialogInterface';
import EditText from 'android.widget.EditText';
24
import R from 'io.dcloud.uni_modules.uts_advance.R';
杜庆泉's avatar
杜庆泉 已提交
25

杜庆泉'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
    getUniActivity()!.runOnUiThread(uiRunable)
}

打打卡夫卡's avatar
打打卡夫卡 已提交
152 153 154
/**
 * 用户输入对话框监听器
 */
杜庆泉's avatar
杜庆泉 已提交
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
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
打打卡夫卡 已提交
177 178 179
/**
 * Dialog ui任务封装
 */
杜庆泉's avatar
杜庆泉 已提交
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 210 211 212 213
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
杜庆泉 已提交
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230



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



244 245 246
/**
 * 引用资源路径
 */
杜庆泉's avatar
杜庆泉 已提交
247 248 249 250
export function getLogoPath(): string {
  return logo;
}

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

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

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

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


325 326 327 328
/**
 * 初始化应用生命周期监听
 * 
 */
杜庆泉's avatar
杜庆泉 已提交
329
export function initAppLifecycle(onLifecycleChange: (event:string) => void) {
杜庆泉's avatar
杜庆泉 已提交
330

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

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

}