0

我正在尝试使用隐式意图调用主要活动。我在意图中给出了动作和类别,但在开始活动之前,android系统给了我一个应用程序列表,供我选择以打开活动。

我用来调用主要活动的代码片段如下:

protected void initiateActivity(int requestCode, String value, String oper) {
        Intent i = new Intent("android.intent.action.MAIN");
        i.addCategory("android.intent.category.LAUNCHER");
        i.putExtra("VALUE", value);
        i.putExtra("OPER", oper);
        startActivityForResult(i, requestCode);
    }

在我看来,系统中的每个应用程序都将具有相同的操作、类别组合,因此 android 为我提供了可供选择的应用程序列表。我可以对我的主要活动进行哪些更改,以免出现此问题?

4

1 回答 1

0

看起来您可能需要使用意图过滤器进行分离。看起来这篇文章有一个很好的解释:

如何在 <intent-filter> 的帮助下启动 MAIN 活动?

建议添加如下过滤器,否则您将调用启动器:

<activity android:name=".MyActivity"
          android:configChanges="orientation|keyboardHidden"
          android:windowSoftInputMode="stateHidden"
          android:screenOrientation="portrait">
    <intent-filter>
          <action android:name="android.intent.action.MAIN"/>
          <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
    <intent-filter>
          <action android:name="com.package.name.MyAction"/>
          <category android:name="android.intent.category.DEFAULT"/>
    </intent-filter>

于 2015-02-18T18:46:49.690 回答