3

電話の画面にapppアイコンを作成したいのですが、それを実行すると、自動アプリがトーストメッセージを作成します。アプリアイコンを作成したり、画面上のアイコンを削除したりするときに、このトーストメッセージを防ぐにはどうすればよいですか。ありがとう。

ここに画像の説明を入力してください

それは私がそれを行う方法のコードです

private void addShortcut(){
Intent shortcutIntent = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");

// Shortcut name
shortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name));
shortcutIntent.putExtra("duplicate", false);

ComponentName comp = new ComponentName(this.getPackageName(), "."+this.getLocalClassName());
shortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(Intent.ACTION_MAIN).setComponent(comp));

// Shortcut icon
ShortcutIconResource iconRes = Intent.ShortcutIconResource.fromContext(this, R.drawable.icon);
shortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, iconRes);

sendBroadcast(shortcutIntent);
}


private void delShortcut(){
Intent shortcut = new Intent("com.android.launcher.action.UNINSTALL_SHORTCUT");

// Shortcut adı
shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name));

String appClass = this.getPackageName() + "." +this.getLocalClassName();
ComponentName comp = new ComponentName(this.getPackageName(), appClass);
shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(Intent.ACTION_MAIN).setComponent(comp));

sendBroadcast(shortcut);
}


public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
delShortcut();
addShortcut();

ショートカットを追加するためのアクセス許可

<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"></uses-permission>
<uses-permission android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT" />
4

2 に答える 2

1

いいえ、申し訳ありませんが、デフォルトのシステムが表示されないようにする方法はありませんToast

于 2012-09-10T05:37:12.013 に答える
1

非表示のプロパティを作成し(私はCheckBoxを作成します)、ショートカットを作成した後、これをtrueに設定してから、パラメーターを確認します。

private void checkShortcut() {
        shortCut = GlobalClass.PREFS.getBoolean("ShortCut", false);
        if (shortCut == true) {
            //addShortcut();
        }
        else{
            remShortcut();
        }

    }
于 2013-01-14T08:01:11.230 に答える