2014-04-04 151 views
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> 

回答

0

您的清單顯示您正在爲活動和小部件設置相同的類名稱。確保你的widget類擴展了AppWidgetProvider。

android:name="com.appointext.widget.Widget"