0
這裏是我的清單文件有人可以告訴我我要去哪裏嗎?錯誤消息是「無法加載小部件」。我GOOGLE了錯誤,人們建議檢查佈局類和窗口小部件類。我已經使用了一個按鈕,但仍然會出現錯誤。請幫幫我。小部件未進入主屏幕
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.bmsce.appointext"
android:versionCode="1"
android:versionName="1.0" android:installLocation="auto">
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/logo_appointext"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<!-- widget starts here -->
<activity
android:name="com.appointext.widget.Widget"
android:label="@string/app_name">
<intent-filter>
<!-- <action
android:name="android.intent.action.MAIN"/> -->
<category
android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver
android:name="com.appointext.widget.Widget"
android:label="Appointext widget">
<intent-filter>
<action
android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget1_info" />
</receiver>
</application>
</manifest>