2013-01-24 51 views
1
 Intent shortcutIntent = new Intent(getApplicationContext(), HomeScreen.class);  
     shortcutIntent.setAction(Intent.ACTION_MAIN); 

     Intent addIntent = new Intent(); 
     addIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent); 
     addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "AIMS ICD"); 
     addIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,Intent.ShortcutIconResource.fromContext(getApplicationContext(), R.drawable.aims)); 
     addIntent.putExtra("duplicate", false); 
     addIntent.setAction("com.android.launcher.action.INSTALL_SHORTCUT"); 
     getApplicationContext().sendBroadcast(addIntent); 

此代碼工作正常,但創建快捷方式本次車展的消息「快捷AIMS ICD創建」我不想這個消息後如何防止自動顯示敬酒消息時,主屏幕上創建應用程序快捷方式在Android中,我不想消息

回答

2

對不起,沒有辦法阻止默認的系統吐司出現(來源:Dianne, Google Employee

+1

但是怎麼了應用程序,而不土司創建圖標 –

相關問題