android支持两种跳转模式,一种比如:
Intent eulaIntent = new Intent(this, xxx.class);另一种比如:
Intent intent = new Intent(Intent.ACTION_INSERT, getIntent().getData());虽然这两种都能用,但是我觉得第一种更简单,快速,但是看了很多官方的demo都是用第二种来实现跳转,通过匹配intent-filter
<action android:name="android.intent.action.INSERT" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.cursor.dir/xxxx" />
我想知道第二种的适用环境和使用第二种的理由?
有朋友愿意和我一起探讨吗?
问题补充
没有高人知道吗?
问题补充
分析下知道两种的区别了!
那按照你的意思,在同一个应用里面,我只要用第一种就可以了?