外國申請我試圖讓下面的代碼來執行:Android的推出從我自己的
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_HOME);
intent.setComponent(new ComponentName(" **Home package** "," **Home class** "));
startActivity(intent);
基本上我正在尋找一種方法特異性靶向並加載準確的,原始的,家庭應用。
聽起來就像是足夠接近。 queryIntentActivites()返回「列表」我怎樣才能將該回饋到「startActivity(xxx)」類型的行中? Cheers –
Edd
@Edd:最簡單的解釋方法是指出這個示例項目,它使用'queryIntentActivities()'創建啓動器樣式的ListView:https://github.com/commonsguy/cw-advandroid /樹/主/反思/ Launchalot – CommonsWare