android Intent使用记录
程序员文章站
2022-03-11 23:24:38
记录下用 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 中View.onDraw(Canvas canvas)的使用方法
-
Android使用记录访问权限详解
-
Android 开发之Dialog中隐藏键盘的正确使用方法
-
Android中okhttp3使用详解
-
Android 中 ThreadLocal使用示例
-
Android 中自定义ContentProvider与ContentObserver的使用简单实例
-
Android Intent调用 Uri的方法总结
-
Android ListView之setEmptyView正确使用方法
-
微信Android热更新Tinker使用详解(星空武哥)
-
Android使用GPS获取用户地理位置并监听位置变化的方法