如何以编程方式设置默认应用启动器?

时间:2015-01-16 19:46:56

标签: android android-intent launcher

我正在创建一个可以通过谷歌下载的启动器(kiosk)应用程序。首次安装此应用程序时,用户可以选择哪个启动器(我的或库存)将是默认设置。如果用户没有将我的应用程序设置为默认启动器,我试图手动启动它。当对话框出现时,我希望用户强制选择ALWAYS而不是JUST ONCE,否则对话框将继续定期显示友好消息。这是我到目前为止所尝试的。

我创建了一个方法来检查我的应用程序是否是默认的

/**
 * method checks to see if app is currently set as default launcher
 * @return boolean true means currently set as default, otherwise false
 */ 
private boolean isMyAppLauncherDefault() {
    final IntentFilter filter = new IntentFilter(Intent.ACTION_MAIN);
    filter.addCategory(Intent.CATEGORY_HOME);

    List<IntentFilter> filters = new ArrayList<IntentFilter>();
    filters.add(filter);

    final String myPackageName = getPackageName();
    List<ComponentName> activities = new ArrayList<ComponentName>();
    final PackageManager packageManager = (PackageManager) getPackageManager();

    packageManager.getPreferredActivities(filters, activities, null);

    for (ComponentName activity : activities) {
        if (myPackageName.equals(activity.getPackageName())) {
            return true;
        }
    }
    return false;
}   

然后我尝试启动选择器

/**
 * method starts an intent that will bring up a prompt for the user
 * to select their default launcher. It comes up each time it is
 * detected that our app is not the default launcher
 */
private void launchAppChooser() {
    Log.d(TAG, "launchAppChooser()");
    Intent intent = new Intent(Intent.ACTION_MAIN);
    intent.addCategory(Intent.CATEGORY_HOME);
    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    startActivity(intent);
}

当我这样做时,我没有在我的应用程序和股票启动器之间做出选择。我尝试使用startActivity(Intent.createChooser(intent, "Please set launcher settings to ALWAYS"));,我可以在我的应用和股票启动器之间做出选择,但是,我不会总是或者只是获得选项。

我可以为此创建一个自定义对话框,而不是启动选择器,但我需要知道如何以编程方式设置默认的应用启动器。提前谢谢!

4 个答案:

答案 0 :(得分:56)

实际上可以通过一些解决方法来实现:

创建一个空Activity,用作名为FakeLauncherActivity的启动器。将其作为已停用组件添加到您的清单中:

<activity
    android:name="com.path.to.your.FakeLauncherActivity"
    android:enabled="false">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />

        <category android:name="android.intent.category.HOME" />
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>

检查您所需的启动器活动是否为默认活动(使用问题中的isMyAppLauncherDefault())。

如果没有,请让用户选择首选的启动器活动,如下所示:

public static void resetPreferredLauncherAndOpenChooser(Context context) {
    PackageManager packageManager = context.getPackageManager();
    ComponentName componentName = new ComponentName(context, com.path.to.your.FakeLauncherActivity.class);
    packageManager.setComponentEnabledSetting(componentName, PackageManager.COMPONENT_ENABLED_STATE_ENABLED, PackageManager.DONT_KILL_APP);

    Intent selector = new Intent(Intent.ACTION_MAIN);
    selector.addCategory(Intent.CATEGORY_HOME);
    selector.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    context.startActivity(selector);

    packageManager.setComponentEnabledSetting(componentName, PackageManager.COMPONENT_ENABLED_STATE_DEFAULT, PackageManager.DONT_KILL_APP);
}

此方法暂时启用FakeLauncherActivity,这会导致可用启动器活动集的更改,从而迫使Android忘记其默认启动器。你会看到像...这样的东西。

521-735/system_process I/PackageManager﹕ Result set changed, dropping preferred activity for Intent { act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10000000 } type null

...在您的日志中。

然后,该方法只需打开一个启动器意图,您可以在其中查看所有已安装的启动器和“始终”/“仅一次”按钮。 最后,该方法再次禁用FakeLauncherActivity,以使其不显示在列表中。

您可以根据需要随时重复此操作,只有在您将所需的启动器活动设置为默认值时才让用户继续操作。

答案 1 :(得分:8)

问题中的isMyAppLauncherDefault()函数由于某种原因并不总是有效。 此代码可能更适合确定HOME屏幕的默认包。

Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_HOME);
ResolveInfo resolveInfo = getPackageManager().resolveActivity(intent, PackageManager.MATCH_DEFAULT_ONLY);
String currentHomePackage = resolveInfo.activityInfo.packageName;

答案 2 :(得分:6)

  

我希望用户在对话框出现时强制选择ALWAYS而不是JUST ONCE

这是不可能的,除非在root设备上,否则会阻止Android中的一些安全漏洞。

  

当我这样做时,我没有在我的应用程序和股票启动器之间做出选择

正确。如果已经选择了默认值,则只会启动默认值。

  

我尝试使用startActivity(Intent.createChooser(意图,“请将启动器设置设置为ALWAYS”));我得到了我的应用程序和股票启动器之间的选择,但是,我没有得到选项总是或只是一次。

正确。 createChooser()强制进行选择,但不允许设置默认值。

答案 3 :(得分:1)

如果您要实施Google EMM解决方案(专用设备):

https://developer.android.com/work/dpc/dedicated-devices/cookbook

// Create an intent filter to specify the Home category.
IntentFilter filter = new IntentFilter(Intent.ACTION_MAIN);
filter.addCategory(Intent.CATEGORY_HOME);
filter.addCategory(Intent.CATEGORY_DEFAULT);

// Set the activity as the preferred option for the device.
ComponentName activity = new ComponentName(context, KioskModeActivity.class);
DevicePolicyManager dpm =
    (DevicePolicyManager) context.getSystemService(Context.DEVICE_POLICY_SERVICE);
dpm.addPersistentPreferredActivity(adminName, filter, activity);