1

全部

我想在清单中的启动器活动中设置两个操作,如下所示,所以这是可能的。

<activity
    android:name=".MainActivity"
    android:screenOrientation="portrait" >
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
        <action android:name="com.example.sampleapp.android.widget.buttons.ButtonWidget.ACTION_WIDGET_CONFIGURE"/>
    </intent-filter>
</activity> 

是否可以?

4

1 回答 1

3

尝试使用多个意图过滤器定义操作

<activity
    android:name=".MainActivity"
    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.example.sampleapp.android.widget.buttons.ButtonWidget.ACTION_WIDGET_CONFIGURE"/>
    </intent-filter>
</activity> 

在 Intent-Filter 中使用多个操作时检查此帖子默认值

于 2013-01-22T07:20:47.910 回答