我正在尝试创建一个小部件,但是当我安装我的应用程序时它没有出现在小部件列表中,我认为这意味着我的清单文件有问题。已经尝试了1.5-2.2的几个不同的例子,重新蜂窝和后蜂窝小部件的工作方式有什么不同吗?
无论如何,这是我清单的小部件
<!-- Broadcast Receiver that will process AppWidget updates -->
<receiver android:name=".ButtonWidget" android:label="@string/app_name">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<!-- Broadcast Receiver that will also process our self created action -->
<action android:name="com.dotpubs.counterpro.ButtonWidget.ACTION_WIDGET_RECEIVER"/>
</intent-filter>
<meta-data android:name="android.appwidget.provider" android:resource="@xml/button_widget_provider" />
</receiver>
<!-- this activity will be called, when we fire our self created ACTION_WIDGET_CONFIGURE -->
<activity android:name=".ClickOneActivity">
<intent-filter>
<action android:name="com.dotpubs.counterpro.ACTION_WIDGET_CONFIGURE"/>
</intent-filter>
</activity>
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />