2017-01-10 19 views
0

ショートカットが追加されたというトーストメッセージを受け取らずにホームスクリーンのショートカットを追加する方法はありますか?ここにショートカットを追加する私の方法ですが、それはたまに乾杯です。ホーム画面のショートカットをトーストメッセージなしで追加する

private void AddShortcut() 
    { 
     var shortcutIntent = new Intent(this, typeof(ActivityMain)); 
     shortcutIntent.SetAction(Intent.ActionMain); 

     var iconResource = Intent.ShortcutIconResource.FromContext(this, Resource.Drawable.ruwicon); 

     var intent = new Intent(); 
     intent.PutExtra(Intent.ExtraShortcutIntent, shortcutIntent); 
     intent.PutExtra(Intent.ExtraShortcutName, "My App"); 
     intent.PutExtra(Intent.ExtraShortcutIconResource, iconResource); 
     intent.PutExtra("duplicate", false); 
     intent.SetAction("com.android.launcher.action.INSTALL_SHORTCUT"); 
     SendBroadcast(intent); 
    } 

答えて

0

申し訳ありませんが、画面に表示され、デフォルトのシステムのトーストを防止するための方法はありません、それは正式にGoogle Group

enter image description here

に言われています
関連する問題