溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

abdroid的activity保存狀態(tài)

發(fā)布時間:2020-07-18 03:12:18 來源:網(wǎng)絡(luò) 閱讀:285 作者:matengbing 欄目:移動開發(fā)
package com.example.android.active;

import android.app.Activity;
import android.content.Context;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.os.Bundle;
import android.widget.Button;
import android.widget.EditText;

public class MainActivity6 extends Activity{
	private EditText editText;
	private Button button;
	private SharedPreferences sharedPreferences;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		// TODO Auto-generated method stub
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main6);
		button=(Button) findViewById(R.id.test);
		editText=(EditText) findViewById(R.id.EditText_main6_1);
		//獲取共享屬性操作的工具(文件名,操作模式)
		//MODE_PRIVATE/0,私有模式,只能本應(yīng)用訪問
		//MODE_WORLD_READABLE(讀)和MODE_WORLD_WRITEABLE(寫)不建議使用(其他因公可以直接讀取)
		sharedPreferences=this.getSharedPreferences("data", 0);
		
	}
	//在onPause()方法中編寫保存數(shù)據(jù)的代碼
	//還原在onResume()方法中
	@Override
	protected void onPause() {
		// TODO Auto-generated method stub
		super.onPause();
		//讀取信息數(shù)據(jù)(從xml文件中),寫入editor
		String msg=editText.getText().toString();
		Editor editor=sharedPreferences.edit();
		editor.putString("msg", msg);
		editor.commit();
	}
	//在onResume()方法中編寫還原代碼
	@Override
	protected void onResume() {
		// TODO Auto-generated method stub
		super.onResume();
		editText.setText(sharedPreferences.getString("msg", ""));
		/*
		 * 刪除信息數(shù)據(jù)(文件中的信息)
		Editor editor=sharedPreferences.edit();
		editor.clear();
		editor.commit();
		*/
	}
}


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI