刚刚学习安卓的知识,在初学阶段了解了只有一个活动的应用如何创建,但是如何通过主活动跳转到其他活动呢,这就需要Intent。废话不多说,介绍一下本Demo的功能:在MainActivity中点击按钮可以跳转到第二个Activity中并且将MainActivity中的数据传输到第二个Activity中显示出来。
首先创建一个安卓项目,创建两个Activity,MainActivity和OtherActivity。在MainActivity的布局文件activity_main.xml中添加一个Button,Button的名字为"start"。
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="start"/>
</android.support.constraint.ConstraintLayout>
在OtherActivity的布局文件other.xml中添加一个TextView。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
然后再MainActivity.java中创建Button的监听器,实现OnClickListener接口并重写onClick方法。在OnCreate方法中将Button实现点击事件监听(如果没有这步,点击按钮是不会有反应的)。
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity {
private Button button;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
button = (Button)findViewById(R.id.button);
button.setOnClickListener(new ButtonListener());
}
class ButtonListener implements View.OnClickListener{
@Override
public void onClick(View v) {
// 创建intent对象
Intent intent = new Intent();
// 通过setClass实现从MainActivity跳转到OtherActivity
intent.setClass(MainActivity.this, OtherActivity.class);
// 通过putExtra传入参数
intent.putExtra("com.example.intenttest.Age", 20);
intent.putExtra("com.example.intenttest.Name", "zhangsan");
// 启动Activity
startActivity(intent);
}
}
}
之后在OtherActivity.java文件中获取intent对象,并通过getExtra()获取MainActivity传入的数据写入到TextView中。
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.widget.TextView;
public class OtherActivity extends Activity {
private TextView textView;
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.other);
Intent intent = getIntent();
int age = intent.getIntExtra("com.example.intenttest.Age", 10);
String name = intent.getStringExtra("com.example.intenttest.Name");
textView = (TextView)findViewById(R.id.textView);
textView.setText(name + ":" + age + "");
}
}
最后很关键的一步就是要在AndroidManifest.xml中注册OtherActivity。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.intenttest">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".OtherActivity"
android:label="OtherActivity">
</activity>
</application>
</manifest>
运行程序,我们可以看到如下界面:
点击start后,可以看到,MainActivity中传入的数据在OtherActivity中显示如下: