Uniapp跟原生android插件交互发信息(一)

1、unipp跳转android界面

java 复制代码
jsCallNativeActivity() {
				// #ifdef APP-PLUS
				//获取宿主上下文
				var main = plus.android.runtimeMainActivity();
				//通过反射获取Android的Intent对象
				var Intent = plus.android.importClass("android.content.Intent");
				//通过宿主上下文创建 intent
				var intent = new Intent(main.getIntent()); 
				//设置要开启的Activity包类路径  com.example.H5PlusPlugin.MainActivity换掉你自己的界面
				intent.setClassName(main, "com.example.H5PlusPlugin.MainActivity");
				//开启新的任务栈 (跨进程)
				intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
				//向原生界面传值操作
				intent.putExtra("uni_key", "来自uniapp的值");
				//开启新的界面
				main.startActivity(intent);
				//#endif
			}
uniapp接收参数

onshow方法里面调用

java 复制代码
onShow() {
			//#ifdef APP-PLUS
			if (plus.runtime.arguments) {
				let lastAppShare = plus.runtime.arguments;
				let appArgs = JSON.parse(lastAppShare);
				if (appArgs) {
					console.log('receive args from native:', appArgs);
				}
			}
			//#endif
		},

2、android打开uniapp指定界面

java 复制代码
 startActivity(new Intent(this, PandoraEntryActivity.class)
                    .putExtra("userName", "张三")
                    .putExtra("token", "TOKEN")
                    .putExtra("path", "login")
android接收参数
java 复制代码
Intent i = getIntent();
 
        String uni_key = i.getStringExtra("uni_key");
 
        Toast.makeText(MainActivity.this, uni_key, Toast.LENGTH_LONG).show();

3、AndroidManifest配置

问题

在 app.vue 中 onShow 获取 应用启动的参数:plus.runtime.arguments 这个是可行的. APP打开以后, 进入到了后台 然后再恢复到前台 仍然会走一次 onShow的生命周期 然后获取到plus.runtime.arguments 中的参数, 那么这参数就是重复了。 相当于还会走一次 plus.runtime.arguments 获取到的参数的逻辑 这样肯定是不行的。

-------解决办法------

在app.vue 中onLaunch 调用

java 复制代码
this.checkArguments(); // 检测启动参数  
	// 重点是以下: 一定要监听后台恢复 !一定要  
	plus.globalEvent.addEventListener('newintent', (e) => {
		this.checkArguments(); // 检测启动参数  
	});

在 app.vue 中 methods 插入代码:

java 复制代码
checkArguments() {  
    console.log('Shortcut-plus.runtime.launcher:启动类型: ' + plus.runtime.launcher);  
    if (plus.runtime.launcher == 'scheme') {  
        try {  
           var cmd = JSON.parse(plus.runtime.arguments);  
          //处理自己逻辑
          .............
          ............  
        } catch (e) {  
            console.log('Shortcut-exception: ' + e);  
        }  
    }  
 }

plus.runtime.arguments 参数清空

java 复制代码
// 取到参数值后,直接赋值清空,有些情况下,单独一个赋值并不能清空,请直接使用下面两条语句。
plus.runtime.arguments = null;
plus.runtime.arguments = "";

!!! 重点 H5+ APP启动类型

可取以下值:

java 复制代码
 "default":默认启动方式,通常表示应用列表启动(360手助中搜索启动);
  "scheme":通过urlscheme方式触发启动; 
 "push":通过点击系统通知方式触发启动
 "stream":通过流应用api(plus.stream.open)启动;
 "shortcut":通过快捷方式启动,iOS平台表示通过3D Touch快捷方式,Android平台表示通过桌面快捷方式启动;
  "barcode":通过二维码扫描启动; 
  "myapp":通过应用收藏列表([流应用]独立App中"我的"列表)触发启动。
相关推荐
tangweiguo030519871 小时前
Android BottomNavigationView 完全自定义指南:图标、文字颜色与选中状态
android
遥不可及zzz2 小时前
Android 应用程序包的 adb 命令
android·adb
无知的前端2 小时前
Flutter 一文精通Isolate,使用场景以及示例
android·flutter·性能优化
_一条咸鱼_2 小时前
Android Compose 入门之字符串与本地化深入剖析(五十三)
android
ModestCoder_3 小时前
将一个新的机器人模型导入最新版isaacLab进行训练(以unitree H1_2为例)
android·java·机器人
robin_suli4 小时前
Spring事务的传播机制
android·java·spring
鸿蒙布道师5 小时前
鸿蒙NEXT开发对象工具类(TS)
android·ios·华为·harmonyos·arkts·鸿蒙系统·huawei
Harrison_zhu6 小时前
Ubuntu18.04 编译 Android7.1代码报错
android
web_Hsir7 小时前
uniapp 微信小程序 使用ucharts
微信小程序·小程序·uni-app
web_Hsir7 小时前
Uniapp 实现微信小程序滑动面板功能详解
vue.js·微信小程序·uni-app