使用对话框删除完整操作

时间:2015-04-27 11:57:34

标签: android android-intent intentfilter

我制作了几个类似的应用程序,使用相同的外部库来加载图像。他们有

         <activity
            android:name="com.customGallery.CustomGalleryActivity"
            android:screenOrientation="portrait"
            android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" >
            <intent-filter>
                <action android:name="luminous.ACTION_PICK" />
                <action android:name="luminous.ACTION_MULTIPLE_PICK" />

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

现在我正在创建一个使用相同图像加载库的不同应用程序 问题是&#34;完成操作使用:&#34; 对话框。它为我提供了使用该库的所有应用程序。有没有办法避免这种情况并将此操作设置为仅使用我的新应用程序?

这是意向召唤:

public static final String ACTION_PICK = "luminous.ACTION_PICK";
public static final String ACTION_MULTIPLE_PICK = "luminous.ACTION_MULTIPLE_PICK";

startActivityForResult(new Intent(ACTION_MULTIPLE_PICK),200);

1 个答案:

答案 0 :(得分:0)

最后,我找到了一个解决方案:

        Intent i = new Intent(Action.ACTION_MULTIPLE_PICK);
        i.setPackage(PACKAGE_NAME);
        _MainInstance.startActivityForResult(i, 200);

因此,只需设置意图的包名称。