如何通过代码获取android中的默认设备辅助应用程序?

时间:2016-11-09 04:21:20

标签: android android-intent android-6.0-marshmallow android-settings google-voice

我的手机安装了两个语音搜索:谷歌应用程序和S语音应用程序。默认应用程序是S-voice app,如下图所示。我的问题是,如何在Android 6.0中使用编程方式获取默认语音应用程序。提前谢谢

enter image description here

这就是我做的事情

private boolean isMyAppLauncherDefault(String myPackageName) {
    final IntentFilter filter = new IntentFilter(Intent.ACTION_MAIN);
    filter.addCategory(Intent.CATEGORY_HOME);

    List<IntentFilter> filters = new ArrayList<IntentFilter>();
    filters.add(filter);
    List<ComponentName> activities = new ArrayList<ComponentName>();
    final PackageManager packageManager = (PackageManager) getPackageManager();

    packageManager.getPreferredActivities(filters, activities, null);
    for (ComponentName activity : activities) {

        Log.d(TAG,"======packet default:==="+activity.getPackageName());
    }
    for (ComponentName activity : activities) {

        if (myPackageName.equals(activity.getPackageName())) {
            return true;
        }
    }
    return false;
}

当输入为com.samsung.voiceserviceplatform时,上述函数总是返回true。另一方面,默认应用程序始终返回com.google.android.googlequicksearchbox(表示谷歌语音)

3 个答案:

答案 0 :(得分:5)

DefaultAssistPreference使用AssistUtils的隐藏方法来检索当前的辅助。您可以使用反射使用相同的方法:

public ComponentName getCurrentAssistWithReflection(Context context) {
    try {
        Method myUserIdMethod = UserHandle.class.getDeclaredMethod("myUserId");
        myUserIdMethod.setAccessible(true);
        Integer userId = (Integer) myUserIdMethod.invoke(null);

        if (userId != null) {
            Constructor constructor = Class.forName("com.android.internal.app.AssistUtils").getConstructor(Context.class);
            Object assistUtils = constructor.newInstance(context);

            Method getAssistComponentForUserMethod = assistUtils.getClass().getDeclaredMethod("getAssistComponentForUser", int.class);
            getAssistComponentForUserMethod.setAccessible(true);
            return (ComponentName) getAssistComponentForUserMethod.invoke(assistUtils, userId);
        }
    } catch (Exception e) {
        e.printStackTrace();
    }

    return null;
}

如果您不想使用反射,可以直接检查系统设置:

public ComponentName getCurrentAssist(Context context) {
    final String setting = Settings.Secure.getString(context.getContentResolver(), "assistant");

    if (setting != null) {
        return ComponentName.unflattenFromString(setting);
    }

    return null;
}

AssistUtils相同的设置,但如果设置无效,AssistUtils也有fallback

答案 1 :(得分:0)

Try this.

startActivity(new Intent(Intent.ACTION_VOICE_COMMAND).setFlags(Intent.FLAG_ACTIVITY_NEW_TASK));

答案 2 :(得分:0)

我尝试从Mattia Maestrini回答,如果返回的组件是一个活动,它确实有用,比如

ComponentInfo{com.sec.android.app.sbrowser/com.sec.android.app.sbrowser.SBrowserMainActivity}

但如果组件是服务,我会遇到以下问题

java.lang.SecurityException: Not allowed to start service Intent { 
act=android.intent.action.ASSIST cmp=com.google.android.googlequicksearchbox/com.google.android.voiceinteraction.GsaVoiceInteractionService launchParam=MultiScreenLaunchParams { mDisplayId=0 mBaseDisplayId=0 mFlags=0 } } without permission android.permission.BIND_VOICE_INTERACTION

我添加了

<uses-permission android:name="android.permission.BIND_VOICE_INTERACTION"/>

在清单文件中。

最后我在Activity.java中使用方法

public boolean showAssist(Bundle args)

它是从 Android M 添加的,它可以成功启动助理服务。