Android:onNewIntent()觸發機制及注意事項
一、onNewIntent()
在IntentActivity中重寫下列方法:onCreate onStart onRestart onResume onPause onStop onDestroy onNewIntent
1、其他應用發Intent,執行下列方法:
onCreate
onStart
onResume
發Intent的方法:
1 |
Uri
uri = Uri.parse( "philn://blog.163.com" ); |
2 |
Intent
it = new Intent(Intent.ACTION_VIEW,
uri); |
3 |
startActivity(it); |
2、接收Intent宣告:
1 |
< activity android:name = ".IntentActivity" android:launchMode = "singleTask" |