Android:IntentActivity,Service,BroadcastReceiver
3.14 Android三大组件
1、Intent页面跳转
Intent(意图):将要做某一件事。Android的3大组件:Activity、Service、BroadcastReceiver,通过Intent启动,并且Intent可以携带数据。
Intent类方法setComponent()设置组件;
setClass(packageContext,cls)设置类、
setAction()设置action参数,指定隐式跳转界面;
addCategory()设置category参数;
setData()设置data参数,设置系统的数据,http,smsto,tel数据类型;
putExtra()方法,传递数据;
实现点击按钮打开新的页面
示例:
创建MainActivity继承Acitivity,主界面Activity,创建Intent类对象,调用startActivity方法,将Intent类对象传入,打开新的Activity页面。
public class MainActivity extends Activity {
private Context mContext;
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mContext=MainActivity.this;
setContentView(R.layout.l_main);
//获取按钮
Button button=findViewById(R.id.btn_1);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//创建Intent,跳转新的Activity
Intent intent=new Intent(mContext,MainActivity.class);
startActivity(intent);
}
});
}
}
创建layout文件:l_main.xml,主界面UI布局。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/btn_1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="打开新页面">
</Button>
</LinearLayout>
在AndroidManifest.xml中,注册Activity,其中<intent-filter>表明MainActivity作为App入口的Activity。
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"></action>
<category android:name="android.intent.category.LAUNCHER"></category>
</intent-filter>
</activity>
创建NewActivity继承Activity
public class NewActivity extends Activity {
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.l_new);
}
}
创建layout文件l_new.xml,NewActivity对应的页面布局文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="新页面">
</TextView>
</LinearLayout>
2、Intent页面数据传递
页面之间数据可以相互传递。传递数据类型可以是基本数据类型,也可以传递类对象,需要对应类需要实现Serializable接口。
示例:
MainActivity传递数据到NewActivity。通过创建Intent类对象,使用putExtra方法存放要传递数据。
//使用Intent传递数据,可以传递基本类型int,byte,char,string,short,long,double,float
intent.putExtra("name","Main页面数据");
//传递一个对象
Person person=new Person(11,"tang");
intent.putExtra("person",person);
NewActivity获取MainActivity传递数据。通过Intent类对象,使用getXXXExtra获取传递的数据。
示例:
//获取上页面传递数据
Intent intent=getIntent();
String name = intent.getStringExtra("name");
//intent.getIntExtra()
//获取传过来对象
Person p= (Person) intent.getSerializableExtra("person");
NewActivity页面返回数据给MainActivity。
NewActivity中,创建Intent类对象,保存要返回的数据。通过setResult方法,将Intent类对象传入,设置resultCode(相当于返回数据的唯一id);
示例:
//返回MainActivity,返回数据
Button button=findViewById(R.id.back);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//创建Intent,保存返回数据
Intent intent=new Intent();
intent.putExtra("name","haha");
//返回数据,resultCode,分辨哪个setResult返回值
setResult(0,intent);
//结束页面,返回
finish();
}
});
MainActivity获取NewActivity返回数据。
首先如果需要Activity返回数据时,使用startActivityForResult打开NewActivity;
其次通过重写MainActivity的onActivityResult方法接收NewActivity传回的数据。
示例:
//需要获取打开Activity返回值,requestCode:多个Acitity返回值,分辨返回值的是哪个Activity
startActivityForResult(intent,1);
示例:
//requestCode:多个Activity返回值时,判断哪个Activity的返回值;
//resultCode:当其他页面有多个setResult,返回多种数据,判断是哪个result返回;
//data:其他页面返回数据;
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
//获取返回数据
if (data!=null){
String name = data.getStringExtra("name");
}
}