1.在AndroidManifest.xml中
<intent-filter> <action android:name="com.sdau.windseeker.activitytest.ACTION_START"/> <category android:name="android.intent.category.DEFAULT"/> </intent-filter>
<action>标签中指明了当前活动可以响应com.sdau.windseeker.activitytest.ACTION_START这个action
<category>则包含一些附加信息,更加精确的指明了当前活动能够相应的intent中还有可能带有category信息
只有<action>,<category>同时能够匹配上intent中指定的action,category时,这个活动才能相应intent
2.protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Button button1 = (Button) findViewById(R.id.button_1); button1.setOnClickListener(new View.OnClickListener() { public void onClick(View v) { Intent intent=new Intent("com.sdau.windseeker.activitytest.ACTION_START"); intent.addCategory("com.sdau.windseeker.activitytest.MY_CATEGORY"); startActivity(intent); } }); }使用intent函数的另一个构造函数,直接将action参数传了进去,表明响应了com.sdau.windseeker.activitytest.ACTION_START这个action活动com.sdau.windseeker.activitytest.DEFAULT是一种默认的Category,调用 startActivity()这个方法自动将Category添加到Intent中自己添加intent.addCategory("com.sdau.windseeker.activitytest.MY_CATEGORY");同时需要在<intent-filter>添加Category声明<intent-filter> <action android:name="com.sdau.windseeker.activitytest.ACTION_START"/> <category android:name="android.intent.category.DEFAULT"/> <category android:name="com.sdau.windseeker.activitytest.MY_CATEGORY"/> </intent-filter>