首页 > 代码库 > AndroidManifest.xml中的注册组件

AndroidManifest.xml中的注册组件

界面跳转时Activity的识别方法有两种:
第一种,通过name

第二种,通过
<intent-filter>

 

通过配置文件中配置<intent-filter>来实现Activity间的通讯

AndroidManifest.xml:

<intent-filter>
<action anroid:name="aaa.bbb.ccc"/>
<category android:name="android.intent.category.DEFAULT"></category >
</intent-filter>

TestActivity:

Intent intent = new Intent();
intent.setAction("aaa.bbb.ccc");
intent.addCategory("android.intent.category.DEFAULT");
startActivity(intent);

 

Service 服务

后台逻辑代码的处理

 

Content Provider 内容提供者

主要管理数据库的访问以及程序内和程序间的共享

 

Broadcast Receiver 广播接收者

全局事件的监听器

 

AndroidManifest.xml中的注册组件