小部件未出现在主屏幕中
Posted
技术标签:
【中文标题】小部件未出现在主屏幕中【英文标题】:widget is not coming in the home screen 【发布时间】:2014-05-16 16:53:30 【问题描述】:这是我的清单文件,有人可以告诉我哪里出错了吗?错误消息是“无法加载小部件”。我用谷歌搜索了错误,人们建议检查布局类和小部件类。我使用了一个按钮,但仍然出现错误。请帮帮我。
<?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>
【问题讨论】:
【参考方案1】:您的清单显示您正在为活动和小部件设置相同的类名。确保您的小部件类扩展了 AppWidgetProvider。
android:name="com.appointext.widget.Widget"
【讨论】:
以上是关于小部件未出现在主屏幕中的主要内容,如果未能解决你的问题,请参考以下文章