如何停止或暂停Pandora和Spotify

时间:2012-04-26 01:18:05

标签: android spotify pandora

我有一个应用程序,它具有启动应用程序,Pandora工作站或快捷方式的功能。一切正常。后来我想停止我开始的应用程序。这适用于大多数事情,除了潘多拉和Spotify并不总是关闭。有时他们这样做但并不总是。它似乎与当前的UI状态有关。例如,当我有Pandora显示或主屏幕显示时,它工作正常。当Home Dock或Car Mode处于活动状态时,它不起作用。您可以在此处查看我的所有源代码: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不会响应发送的关键事件,他们只是继续玩。这会使通知图标保持活动状态,并使应用程序成为前台活动,因此我无法阻止它。

3 个答案:

答案 0 :(得分: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);

答案 1 :(得分:2)

对于其他任何尝试此事的人;除非您作为系统运行,否则不再允许广播android.intent.action.HEADSET_PLUG意图。

答案 2 :(得分:0)

作为&#34; HEADSET_PLUG&#34;现在只有在系统调用时才支持intent,我发现app特定的意图是要走的路:

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

基本上,这是做什么的,它会调用&#34; PLAY&#34;来自spotify app。

我从article得到了这个想法并将其应用到普通的android。