【Android】Intent相关内容

【显式Intent】

LinerLayout 是线性布局

orientation是布局走向 vertical是垂直方向

android:textAllCaps="false" 可以让视图中能够区分大小写

需要在AndroidManifest里面进行注册,才能通过intent进行调用

创建的新类要在Manifest里面定义。

显式Intent,直接指明了启动的类,启动的就是MyAty.class

startActivity(new Intent(MainActivity.this, MyAty.class));

隐式的Intent不写启动的类

1.配置一个Action

在Manifest里面定义

<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
<action android:name="start" />
</intent-filter>

action约定的命名格式:包名+.intent.action.MyAty

在要启动的类中 声明它的Action名称

public static final String ACTION = 上面的包名

在启动这个类的时候,只需要写

startActivity(new Intent(MyAty.ACTION)即可

 

在其他应用中启动这个应用,intent中写动作的全名

如果某个应用不想被其他应用启动,则在manifest中 android:exported = false

如果有多个应用都有相同的antion 启动的时候就会出现启动项

通过浏览器链接启动本地Activity

在activity配置里,添加intent-filter

category BROWSABLE和DEAFULT

action为VIEW

data属性为app

posted @ 2015-07-08 20:56  黄天河·Solare  阅读(166)  评论(0编辑  收藏  举报