Android實現頁面跳轉的全過程記錄
1、啟動新Activty
1.1、功能分析
- App功能
- 在第一個Activity輸入消息
- 點擊第一個Activity的發送按鈕
- 發送消息到第二個Activity
- 第二個Activity顯示收到的消息
- App結構(2個Activity+2個Layout) :
- 打開App時,啟動CreateMessageActivty
加載activity_create_message.xml作為佈局 - 用戶點擊按鈕啟動ReceiveMessageActivty
加載activity _receive_message.xml作為佈局
- 打開App時,啟動CreateMessageActivty
1.2、開發視圖佈局
activity_create_message.xml
<?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.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=".CreateMessageActivity"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <EditText android:id="@+id/input" android:layout_width="match_parent" android:layout_height="wrap_content" android:ems="10" android:hint="@string/hint" android:inputType="textPersonName" android:textSize="30sp"/> <Button android:id="@+id/button" android:layout_width="match_parent" android:layout_height="wrap_content" android:onClick="onSendMessage" android:text="@string/send" android:textSize="30sp" /> </LinearLayout> </androidx.constraintlayout.widget.ConstraintLayout>
activity _receive_message.xml
<?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.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" app:layout_constraintRight_toRightOf="parent" tools:context=".ReceiveMessageActivity"> <TextView android:id="@+id/output" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="2nd Activity" android:textSize="34sp" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" /> </androidx.constr
string.xml
<resources> <string name="app_name">Messager</string> <string name="send">Send Message</string> <string name="hint">Enter a message</string> <string name="choser">Send Message via ...</string> </resources>
1.3、按鈕事件響應
CreateMessageActivty類:發送消息
public class CreateMessageActivity extends AppCompatActivity { //定義常量,作為消息的key public static final String MESSAGE_KEY="szst.it.ping.messager"; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_create_message); } public void onSendMessage(View Button){ //獲得編輯框引用 EditText editText = findViewById(R.id.input); //取出編輯框文字 String message = editText.getText().toString(); //Intent是Android中的信使,新建Intent打開,設置收件Activity為ReceiveMessageActivity Intent intent = new Intent(this,ReceiveMessageActivity.class) ; //在intent中附加消息 intent.putExtra(MESSAGE_KEY,message); //向Android發出請求 startActivity(intent); } }
ReceiveMessageActivty類:接收消息
public class ReceiveMessageActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_receive_message); //獲得intent的引用 Intent intent = getIntent(); //根據key取出value String message = intent.getStringExtra(CreateMessageActivity.MESSAGE_KEY); //獲得文本框內容,設置文字 TextView textView = findViewById(R.id.output); textView.setText(message); } }
1.4、測試結果
啟動界面
輸入消息“123”並點擊按鈕發送,接收界面如下
2、啟動其他App
2.1、功能分析
- App功能
- 在第一個Activity輸入消息
- 點擊第一個Activity的發送按鈕
- 發送消息到其他App
- 其他App顯示收到的消息
- App結構(1個Activity+1個Layout) :
- 打開App時,啟動CreateMessageActivty
加載activity_create_message.xml作為佈局 - 用戶點擊按鈕啟動選擇啟動滿足條件的App
- 打開App時,啟動CreateMessageActivty
2.2、開發視圖佈局
- activity_create_message.xml
- 同1.2中的activity_create_message.xml
2.3、按鈕事件響應
CreateMessageActivty類:發送消息
public class CreateMessageActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_create_message); } public void onSendMessage(View Button){ //獲得編輯框引用 EditText editText = findViewById(R.id.input); //取出編輯框文字 String message = editText.getText().toString(); //使用new Intent(Intent.ACTION_SEND)替換new Intent(this, ReceiveMessageActivity.class),不知道其它App中的類名 Intent intent = new Intent(Intent.ACTION_SEND); //設置消息類型為純文本,系統不會對消息進行處理 intent.setType("text/plain"); //向Intent添加附加信息 intent.putExtra(Intent.EXTRA_TEXT,message); //自定義選擇對話框 String chooserTitle = getString(R.string.choser); Intent chosenIntent = Intent.createChooser(intent, chooserTitle); startActivity(chosenIntent) ; } }
2.4、測試結果
啟動界面同1.4
輸入消息“123”並點擊按鈕發送,選擇要發送的app(Messaging)
發送附加消息到111
發送成功
總結
到此這篇關於Android實現頁面跳的文章就介紹到這瞭,更多相關Android實現頁面跳轉內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- Android中Activity組件實例介紹
- Android 詳解沉浸式狀態欄的實現流程
- Android移動應用開發指南之六種佈局詳解
- Android生成隨機數的方法實例
- Android如何在原生App中嵌入Flutter