Android:使用Intent或intent-filter启动活动

时间:2017-02-04 14:39:57

标签: java android android-intent intentfilter

我总是使用Intents开始活动,但在我阅读活动的书中,使用动作参数启动: 不是这种经典的方式

ggplot(pmWaw, aes(x=month.day, y=pm25, group = year)) + 
geom_point(alpha=0.5) +
geom_smooth(aes(color=factor(year)))

但是这样:

Intent intent = new Intent(this,ActivityResult.class);

在清单中有一个意图过滤器:

String PICK_BUS_ACTION = "com.example.utente.decompilare" + ".action.PICK_BUS_ACTION";
Intent intent = new Intent(PICK_BUS_ACTION);

我尝试了两种方式,但我没有发现差异。什么是更好的?有什么区别?

1 个答案:

答案 0 :(得分:0)

第二个用于启动其他应用程序。