1.新建一个类(.java 文件),继承Android.app.Activity
2.新建一个activity 文件
3.重写onCreate 方法,设置绑定activity 文件
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_another);
}
4.在AndroidManiFest.xml 文件的<application>标签中注册 <activity>标签,形如 .类名,完成新建。
<activity android:name=".Another" android:exported="false" >
<intent-filter >
<action android:name="com.example.jikexueyuan_learnintent.intent.action.another"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
注:exported属性为是否可以在其他其他APP中引用或者打开此activity,即是否可导出(在一个APP中新建一个形如APP)
intet-filter中,<action>标签,给该activity 去一个名字,任意(一般为:包名.intent.action.类名)
<category>标签,一般是android.intent.category.DEFAULT ,这两个标签可不写。