2

在设备上安装我的主屏幕应用程序“X”后,当用户按下主屏幕按钮时,系统会提示他使用默认操作Android 对话框在默认主屏幕和我的 X 应用程序之间进行选择。

我的用例是继续提示用户 - 虽然很少,但使用此默认操作对话框,直到他选择我的应用程序作为默认值。

  1. 我可以使用ACTION_MAIN意图进行提示。
  2. 问题是我应该什么时候停止提示?
    我怎么知道我的 X 应用程序现在是默认应用程序?
4

1 回答 1

7

假设您有一个应用程序 X,其清单中有以下声明

<activity android:name=".MyActivity"
       android:label="@string/app_name">
    <!-- filter: This activity can be the default view action for a row in
         RawContacts -->
    <intent-filter>
        <action android:name="android.intent.action.VIEW" />
        <data android:mimeType="vnd.android.cursor.item/raw_contact" />
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>

要检查此应用程序是否是“默认选项”(在此示例中为任何内容),您只需:

/**
 * Returns true if the supplied component name is the preferred activity
 * for any action.
 * @param component The ComponentName of your Activity, e.g. 
 *    Activity#getComponentName().
 */
boolean isDefault(ComponentName component) {
    ArrayList<ComponentName> components = new ArrayList<ComponentName>();
    ArrayList<IntentFilter> filters = new ArrayList<IntentFilter>();
    getPackageManager().getPreferredActivities(filters, components, null);
    return components.contains(component);
}    
于 2012-05-30T13:44:07.460 回答