startActivityForResult()和onSaveInstanceState()用法

吾乃韓小呆發表於2018-02-02

該方法作用是:A Activity跳轉到B Activity攜帶返回資料
MainActivity的xml佈局內程式碼:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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="com.example.hxd.gittest.MainActivity">

    <Button
        android:id="@+id/btn_call"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:text="打電話" />

    <TextView
        android:id="@+id/tv_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/btn_call"
        android:layout_centerInParent="true"
        android:text="測試"
        android:textSize="50sp" />

</RelativeLayout>

MainActivity,class檔案內部程式碼

package com.example.hxd.gittest;

import android.content.Intent;
import android.net.Uri;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class MainActivity extends AppCompatActivity {
    private Button btnCall;
    private TextView tvText;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        btnCall = findViewById(R.id.btn_call);
        tvText = findViewById(R.id.tv_text);

        btnCall.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent intent = new Intent(MainActivity.this, SecondActivity.class);
                //呼叫 startActivityForResult()方法
                //第一個引數傳入intent  第二個引數傳入請求碼(自定義、唯一)
                startActivityForResult(intent, 1);
            }
        });
    }

    /**
     * 獲取返回結果
     * @param requestCode 請求時傳入的請求碼
     * @param resultCode 返回資料的處理結果-->即:“RESULT_OK”,“RESULT_CANCELED”
     * @param data 返回的資料
     */
    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        if (requestCode == 1) {
            if (resultCode == RESULT_OK) {
                String returnString = data.getStringExtra("data");
                tvText.setText(returnString);
            }
        }
    }
}

SecondActivity的xml程式碼

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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="com.example.hxd.gittest.SecondActivity">

    <Button
        android:id="@+id/btn_second"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:text="second" />
</RelativeLayout>

SecondActivity.class內部程式碼

package com.example.hxd.gittest;

import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class SecondActivity extends AppCompatActivity {

    private Button btnSecond;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_second);

        btnSecond = findViewById(R.id.btn_second);

        btnSecond.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent intent = new Intent();
                intent.putExtra("data", "123");
                //tResult()該方法為返回資料的重要方法
                //第一個引數有兩個可選項分別為“RESULT_OK”,“RESULT_CANCELED”;
                //第二個引數為返回資料內容
                setResult(RESULT_OK, intent);
                finish();
            }
        });
    }

    /**
     * 返回鍵控制
     */
    @Override
    public void onBackPressed() {
        Intent intent = new Intent();
        intent.putExtra("data", "123");
        //tResult()該方法為返回資料的重要方法
        //第一個引數為處理結果,兩個可選項分別為“RESULT_OK”,“RESULT_CANCELED”;
        //第二個引數為返回資料內容
        setResult(RESULT_OK, intent);
        finish();
    }
}

onSaveInstanceState()方法使用
使用目的:防止Activity以外殺死之後資料丟失;
使用方法:首先,在Activity內部重寫onSaveInstanceState(Bundle outState)方法;之後在Activity內的onCreate方法內部進行資料恢復。
呼叫程式碼:

@Override
    public void onSaveInstanceState(Bundle outState) {
        super.onSaveInstanceState(outState);
        String date = "your date";
        //鍵值對的方式進行儲存資料
        outState.putString("date", date);
    }

恢復資料程式碼:

 @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        if (savedInstanceState != null) {
            etTest.setText(savedInstanceState.getString("date"));
        }
    }


相關文章