android Intent使用记录
程序员文章站
2022-06-21 19:58:21
记录下用 Intent 打开其他 Activity 的方法一、根据包名、类名打开1.1 同一应用,从 MainActivity 打开 SecondActivitystartActivity(new Intent(MainActivity.this, SecondActivity.class));1.2 不同应用,从 A 应用打开 B 应用知道 B 应用的包名、类名ComponentName mComponent = new ComponentName("packageName", "class...
记录下用 Intent 打开其他 Activity 的方法
一、根据包名、类名打开
1.1 同一应用,从 MainActivity 打开 SecondActivity
startActivity(new Intent(MainActivity.this, SecondActivity.class));
1.2 不同应用,从 A 应用打开 B 应用
知道 B 应用的包名、类名
ComponentName mComponent = new ComponentName("packageName", "className");
Intent homeIntent = new Intent();
homeIntent.setComponent(mComponent);
startActivity(homeIntent);
1.3 不同应用,从 A 应用打开 B 应用
只知道 B 应用的包名
Intent packageIntent = getPackageManager().getLaunchIntentForPackage("packageName");
startActivity(packageIntent);
二、根据 action 打开
2.1 根据 action 打开
SecondActivity 配置如下,
<intent-filter>
<action android:name="com.test.intent.action.SECOND" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
打开示例 startActivity(new Intent("com.test.intent.action.SECOND"));
2.2 根据 action 、category 打开
SecondActivity 配置如下,
<intent-filter>
<action android:name="com.test.intent.action.SECOND" />
<category android:name="com.test.intent.category.SECOND" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
打开示例
Intent intent = new Intent("com.test.intent.action.SECOND");
intent.addCategory("com.test.intent.category.SECOND");
startActivity(intent);
2.3 根据 action 、data 打开
SecondActivity 配置如下,
<intent-filter>
<action android:name="com.test.intent.action.SECOND" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:scheme="content"
android:host="com.test.second"
android:port="1000"
android:path="/folder" />
</intent-filter>
打开示例
Intent intent = new Intent("com.test.intent.action.SECOND");
intent.setData(Uri.parse("content://com.test.second:1000/folder"));
startActivity(intent);
content://com.test.second:1000/folder
需要和 <data/>
里的对应上。
2.4 根据 action 、data-type 打开
SecondActivity 配置如下,
<intent-filter>
<action android:name="com.test.intent.action.SECOND" />
<category android:name="com.test.intent.category.SECOND_FOR_TYPE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
打开示例
Intent intent = new Intent("com.test.intent.action.SECOND");
//intent.addCategory("com.test.intent.category.SECOND_FOR_TYPE");
intent.setType("text/plain");
startActivity(intent);
其中,是否添加 intent.addCategory("com.test.intent.category.SECOND_FOR_TYPE");
都可以正常跳转打开;
添加了会匹配 <category android:name="com.test.intent.category.SECOND_FOR_TYPE" />
;
不添加则默认匹配 <category android:name="android.intent.category.DEFAULT" />
。
本文地址:https://blog.csdn.net/weixin_44021334/article/details/107431006
上一篇: Android之多线程与异步浅析
下一篇: 你又要把我的都喝掉了
推荐阅读
-
Android使用TextView跑马灯效果
-
Android列表组件ListView使用详解之隐藏滚动条
-
MVC使用Log4Net进行错误日志记录学习笔记4
-
Android中回调接口的使用介绍
-
Android 使用【AIDL】调用外部服务的解决方法
-
Android中的android:layout_weight使用详解
-
Android Fragment中使用SurfaceView切换时闪一下黑屏的解决办法
-
Android ListView之EfficientAdapte的使用详解
-
Android开发实现的Intent跳转工具类实例
-
Android 使用FragmentTabhost代替Tabhost