gpt4 book ai didi

Android小部件背景没有出现,没有响应

转载 作者:太空宇宙 更新时间:2023-11-03 11:21:48 24 4
gpt4 key购买 nike

我在应用程序中创建的小部件的背景图像突然停止显示。此外,当我在模拟器中运行应用程序时,小部件似乎不再响应点击事件。以下是 Android 项目文件:

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.widgetexample"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="-4" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".ConfigureActivity">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
</activity>
<receiver android:name="WidgetProvider">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data android:name="android.appwidget.provider"
android:resource="@xml/widgetprovider" />
</receiver>
</application>
</manifest>

res/xml/widgetprovider.xml

<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:minWidth="72dp"
android:minHeight="72dp"
android:updatePeriodMillis="0"
android:initialLayout="@layout/widget"
android:configure="com.widgetexample.ConfigureActivity">
</appwidget-provider>

res/layout/widget.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button
android:id="@+id/widget_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10dp"
android:background="@drawable/widget_background" />
</LinearLayout>

src/com/widgetexample/WidgetProvider.java

package com.widgetexample;

import android.app.PendingIntent;
import android.appwidget.AppWidgetManager;
import android.appwidget.AppWidgetProvider;
import android.content.Context;
import android.content.Intent;
import android.widget.RemoteViews;

public class WidgetProvider extends AppWidgetProvider {
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
for (int widgetIndex = 0; widgetIndex < appWidgetIds.length; widgetIndex++) {
int appWidgetId = appWidgetIds[widgetIndex];
Intent intent = new Intent(context, ConfigureActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0);
RemoteViews mRemoteViews = new RemoteViews(context.getPackageName(), R.layout.widget);
mRemoteViews.setOnClickPendingIntent(R.id.widget_button, pendingIntent);
appWidgetManager.updateAppWidget(appWidgetId, mRemoteViews);
}
}
}

src/com/widgetexample/ConfigureActivity.javares/drawable/widget_background.png 都存在。我能够在标准图像查看器中打开后者。执行时,小部件显示如下屏幕截图所示:http://i.stack.imgur.com/b43Ya.png . logcat 输出相当长,无法包含在此处,但这是我注意到似乎相关的一行。

08-22 19:04:46.182: WARN/AppWidgetHostView(100): can't inflate defaultView because mInfo is missing

此错误确实出现在 android.appwidget.AppWidgetHostView 的 Android 源代码中,但我不确定如何更正此问题,而且 Google 提供的有关该错误的有用信息很少。

有没有其他人遇到过这种情况或找到了解决方法?我能够用一个全新的项目复制这个问题,并且所有对源文件和资源的引用看起来都是一致的,所以我想知道这个问题是否不是我的开发环境所特有的。感谢任何和所有反馈。

最佳答案

当小部件主机没有任何小部件提供者元数据时,会记录该错误我的猜测是元数据文件存在一些问题。我注意到您将 updatePeriod 设置为 0。尝试将其设置为半小时 (1800000),看看会发生什么。为了安全起见,暂时也删除配置标签,以使其尽可能简单。

关于Android小部件背景没有出现,没有响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7155279/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com