activity生命週期的onPause和onStop

銳湃發表於2015-11-23

搞了這麼長時間的android開發,卻對一些基礎的東西一直模稜兩可。。。就比如這個onPause和onStop。如果從一個介面,跳到另一個介面,那麼是呼叫哪個呢?

經過我的實驗。搞清楚了。onPause是有活動狀態變為非活動狀態。onStop()是變為不可見。那麼從一個頁面跳到另一個頁面就是依次呼叫onPause,onStop.看下程式:

package com.example.fuhe;

import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.util.Log;
import android.view.Menu;
import android.view.View;

public class MainActivity extends Activity {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
	}
	
	public void click(View view){
		Intent intent = new Intent();
		intent.setClass(this, SS.class);
		startActivity(intent);
	}

	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		// Inflate the menu; this adds items to the action bar if it is present.
		getMenuInflater().inflate(R.menu.main, menu);
		return true;
	}
	
	@Override
	protected void onRestart() {
		super.onRestart();
		Log.e("MainActivity", "onRestart");
	}
	
	@Override
	protected void onResume() {
		super.onResume();
		Log.e("MainActivity", "onResume");
	}
	
	@Override
	protected void onPause() {
		super.onPause();
		Log.e("MainActivity", "onPause");
	}
	
	@Override
	protected void onStop() {
		super.onStop();
		Log.e("MainActivity", "onStop");
	}

}

package com.example.fuhe;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;

public class SS extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState) {
	super.onCreate(savedInstanceState);
	setContentView(R.layout.ss);
}

	public void click(View view){
		finish();
	}

}

logcat:從第一個頁面跳到第二個頁面,再返回的情況


原文地址:http://blog.csdn.net/howlaa/article/details/27399227

相關文章