一旦我的主屏幕应用'X'安装在设备上&当用户按下主页按钮时,系统会提示他使用默认操作 Android对话框在默认主页&我的X应用程序。
我的用例是继续提示用户 - 虽然很少,但是这个默认操作对话框直到他选择我的应用程序为默认值。
答案 0 :(得分: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>
要检查此应用程序是否为“默认选项”(在此examepl 中用于任何内容),您只需:
/**
* 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);
}