Android: Launch the HOME screen

ACTION_MAIN with category CATEGORY_HOME -- Launch the home screen.

				Intent intent = new Intent(Intent.ACTION_MAIN);	
				intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);			
				intent.addCategory(Intent.CATEGORY_HOME);						
				mContext.startActivity(intent); 


你可能感兴趣的:(android,action)