现在的位置: 首页 > 综合 > 正文

Android: Launch the HOME screen

2013年08月19日 ⁄ 综合 ⁄ 共 223字 ⁄ 字号 评论关闭

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); 

抱歉!评论已关闭.