1

インストールしたアプリを自動起動させることはできますか?

ありがとう

4

3 に答える 3

0

イベントの自動開始?IntentFilter特定のアクションのアプリをデフォルトにするためにチェックアウトしてください。

特定の時間以降に自動開始しますか?チェックAlarmアウト!

于 2011-02-01T12:20:59.720 に答える
0

起動時にアプリケーションを起動する場合は、この記事をお読みください。

于 2011-02-01T12:23:02.410 に答える
0

はい 。

このためには、アラーム通知を使用する必要があります。

あなたはネット上でこれのための多くのチュートリアルを見つけることができます。ただググってください。

このようなコードが見つかります...

            Intent intent = new Intent(FirstScreen.this, MyBroadcastListener.class);

            PendingIntent sender = PendingIntent.getBroadcast(FirstScreen.this,
                    0, intent, 0);

            // We want the alarm to go off 30 seconds from now.
            Calendar calendar = Calendar.getInstance();
            calendar.setTimeInMillis(System.currentTimeMillis());
            calendar.add(Calendar.SECOND, 30);

            // Schedule the alarm!
            AlarmManager am = (AlarmManager)getSystemService(ALARM_SERVICE);
            am.set(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), sender);

BroadCastListener設定するのは、代わりに任意のアクティビティを呼び出すことができます。自分のアプリも..:)

于 2011-02-01T12:18:33.473 に答える