3

アプリ、Pandoraステーション、またはショートカットを起動する機能を備えたアプリがあります。それはすべてうまくいきます。後で、起動したアプリを停止したいと思います。これは、PandoraとSpotifyが常に閉じるとは限らないことを除いて、ほとんどの場合に機能します。時々彼らはそうしますが、いつもではありません。現在のUIの状態に関連しているようです。たとえば、Pandoraを表示したり、ホーム画面を表示したりすると、正常に機能します。ホームドックまたはカーモードがアクティブな場合、それは機能しません。私のすべてのソースコードはここで見ることができます:http ://code.google.com/p/a2dpvolume/ service.javaは、この機能を備えたファイルです。

これは、音楽の再生を停止してからアプリを停止しようとするコードの一部です。

if (bt2.hasIntent()) {
        // if music is playing, pause it
        if (am2.isMusicActive()) {
            // first pause the music so it removes the notify icon
            Intent i = new Intent("com.android.music.musicservicecommand");
            i.putExtra("command", "pause");
            sendBroadcast(i);
            // for more stubborn players, try this too...
            Intent downIntent2 = new Intent(Intent.ACTION_MEDIA_BUTTON, null);
            KeyEvent downEvent2 = new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_MEDIA_STOP);
            downIntent2.putExtra(Intent.EXTRA_KEY_EVENT, downEvent2);
            sendOrderedBroadcast(downIntent2, null);
        }

        // if we opened a package for this device, try to close it now
        if (bt2.getPname().length() > 3 && bt2.isAppkill()) {
            // also open the home screen to make music app revert to
            // background
            Intent startMain = new Intent(Intent.ACTION_MAIN);
            startMain.addCategory(Intent.CATEGORY_HOME);
            startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            startActivity(startMain);
            // now we can kill the app is asked to

            final String kpackage = bt2.getPname();
            CountDownTimer killTimer = new CountDownTimer(6000, 3000) {
                @Override
                public void onFinish() {
                    try {
                        stopApp(kpackage);
                    } catch (Exception e) {
                        e.printStackTrace();
                        Log.e(LOG_TAG, "Error " + e.getMessage());
                    }
                }

                @Override
                public void onTick(long arg0) {

                    if (am2.isMusicActive()) {

                        // for more stubborn players, try this too...
                        Intent downIntent2 = new Intent(Intent.ACTION_MEDIA_BUTTON, null);
                        KeyEvent downEvent2 = new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_MEDIA_STOP);
                        downIntent2.putExtra(Intent.EXTRA_KEY_EVENT, downEvent2);
                        sendOrderedBroadcast(downIntent2, null);
                    }

                    try {
                        stopApp(kpackage);
                    } catch (Exception e) {
                        e.printStackTrace();
                        Log.e(LOG_TAG, "Error " + e.getMessage());
                    }
                }
            };
            killTimer.start();

        }
    }

これが関数stopApp()です。

protected void stopApp(String packageName) {
    Intent mIntent = getPackageManager().getLaunchIntentForPackage(
            packageName);
    if (mIntent != null) {
        try {

            ActivityManager act1 = (ActivityManager) this
                    .getSystemService(ACTIVITY_SERVICE);
            // act1.restartPackage(packageName);
            act1.killBackgroundProcesses(packageName);
            List<ActivityManager.RunningAppProcessInfo> processes;
            processes = act1.getRunningAppProcesses();
            for (ActivityManager.RunningAppProcessInfo info : processes) {
                for (int i = 0; i < info.pkgList.length; i++) {
                    if (info.pkgList[i].contains(packageName)) {
                        android.os.Process.killProcess(info.pid);
                    }
                }
            }
        } catch (ActivityNotFoundException err) {
            err.printStackTrace();
            Toast t = Toast.makeText(getApplicationContext(),
                    R.string.app_not_found, Toast.LENGTH_SHORT);
            if (notify)
                t.show();
        }

    }
}

他の誰かがこの問題に遭遇しましたか?起動したアプリを確実に停止するにはどうすればよいですか?最初に一時停止してバックグラウンドに置く必要があります。それが私が抱えている問題です。ほとんどの状況で機能しますが、すべてではありません。場合によっては、PandoraとSpotifyは送信されたキーイベントに応答せず、再生を続けます。これにより、通知アイコンがアクティブになり、アプリがフォアグラウンドアクティビティになるため、停止できなくなります。

4

3 に答える 3

3

Pandora は、ヘッドセットが切断されたことを確認すると、音楽を一時停止することがわかった。そのため、Pandora が一時停止するように、切断インテントを送信する必要がありました。一時停止すると、バックグラウンドにプッシュして強制終了できました。

//Try telling the system the headset just disconnected to stop other players
            Intent j = new Intent("android.intent.action.HEADSET_PLUG");
            j.putExtra("state", 0);
            sendBroadcast(j);
于 2012-04-28T02:33:36.260 に答える
0

「HEADSET_PLUG」インテントはシステムによって呼び出された場合にのみサポートされるようになったため、アプリ固有のインテントが最適であることがわかりました。

           Intent pauseSpotify = new Intent("com.spotify.mobile.android.ui.widget.PLAY");
           pauseSpotify.setPackage("com.spotify.music");
           sendBroadcast(pauseSpotify);

基本的に、これが行うことは、Spotify アプリから「PLAY」を呼び出すことです。

記事からアイデアを得て、通常のアンドロイドに適用しました。

于 2016-02-06T21:21:37.560 に答える