启动一个新的页面
Posted 岑忠满
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了启动一个新的页面相关的知识,希望对你有一定的参考价值。
Intent(目的) 的分类
-
显式 Intent
构造函数重载之一:
Intent intent = new Intent(FirstActivity.this,SecondActivity.class); //创建一个Intent 对象,第一个参数content(传入上下文),第二个参数传入目标活动。 startActivity(intent); //通过startActivity方法启动活动,传入参数(intent)
-
隐形 Intent
在androidMainfest中对action和category 进行描述,只有当intent中的action和category都匹配时才能启动活动(category默认为DEFAULT(默认的))
<activity android:name=".SecondActivity" android:label="这是要启动的activity"> <intent-filter> <action android:name="com.example.cenzhongman.ACTION_START"/> <category android:name="android.intent.category.DEFAULT"/> </intent-filter> </activity>
构造函数重载之二:
public void onClick(View view) { Toast.makeText(FirstActivity.this, "启动页面二", Toast.LENGTH_SHORT).show(); Intent intent = new Intent("com.example.cenzhongman.ACTION_START");//直接传入action的字符串 //默认的category默认匹配 startActivity(intent); }
二,自行销毁一个活动
杀死一个人只需要一句话,销毁活动也一样:
finish();
以上是关于启动一个新的页面的主要内容,如果未能解决你的问题,请参考以下文章