1、显示意图
//第一种
//Intent intent =new Intent(getApplicationContext(),TwoActivity.class);
Intent intent =new Intent();
//第二种
//intent.setClass(MainActivity.this, TwoActivity.class);
//第三种
//intent.setClassName(getApplicationContext(), "com.example.test3.TwoActivity");
//第四种
/*ComponentName component=new ComponentName(getApplicationContext(), TwoActivity.class);
intent.setComponent(component);*/
2、隐士意图
<activity android:name="com.example.test3.TwoActivity">
<intent-filter>
<action android:name="com.example.test3.TwoActivity.filter"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
intent.setAction("com.example.test3.TwoActivity.filter");
intent.addCategory(Intent.CATEGORY_DEFAULT);
activity跳转方式
原创
©著作权归作者所有:来自51CTO博客作者向往宇宙的原创作品,请联系作者获取转载授权,否则将追究法律责任
上一篇:java注解定义与使用
下一篇:android 横竖屏判断
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Android面试题之activity启动流程
Android面试题之activity启动流程总结
加载 初始化 Android 面试题 activity -
android activity的跳转 activity跳转到fragment
Activity 跳转到Fragment中(备注:MainActivity中的Fragment) 如果大
android activity的跳转 回退栈 App ide