gpt4 book ai didi

java - 在我开始移动之前,带有 ImageView 的 Android 小部件是不可见的

转载 作者:行者123 更新时间:2023-11-30 03:35:11 25 4
gpt4 key购买 nike

我有一个带有 ImageView 的小部件,我将其源设置为用户设备上的图像的 URI。我在小部件提供程序的 onUpdate 中使用 RemoteViews.setImageViewUri() 设置它。最奇怪的事情发生了:当小部件静止在我的主屏幕上时我看不到小部件或图像,但是当我拿起它并开始移动它时,图像出现了!

下面是一些说明这一点的屏幕截图:

enter image description here enter image description here

这是小部件的布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/picture_widget_parent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="@dimen/widget_margin" >

<ImageView
android:id="@+id/the_picture"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:contentDescription="@string/image_content_description"
android:scaleType="centerCrop" />

</RelativeLayout>

这是我的 AppWidgetProvider:

public class WidgetProvider extends AppWidgetProvider {

@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
super.onUpdate(context, appWidgetManager, appWidgetIds);

updateAllWidgets(context, appWidgetManager, appWidgetIds);
}

private void updateAllWidgets(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
PuppyFramePersistenceManager persistenceManager = new PuppyFramePersistenceManager(context);

for(int i = 0; i < appWidgetIds.length; i++) {
int appWidgetId = appWidgetIds[i];

RemoteViews remoteViews = new RemoteViews(context.getPackageName(), R.layout.puppyframe_widget);
Intent configIntent = new Intent(context, AlbumsActivity.class);

Uri.withAppendedPath(Uri.parse("pw" + i + "://widget/id/"), String.valueOf(appWidgetId));
configIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);

PendingIntent configPendingIntent = PendingIntent.getActivity(context, 0, configIntent, 0);
remoteViews.setOnClickPendingIntent(R.id.picture_widget_parent, configPendingIntent);

String currentAlbumId = persistenceManager.getCurrentAlbumIdForAppWidgetId(appWidgetId);
if(currentAlbumId != null) {
Uri imageUri = Uri.parse(persistenceManager.getAlbumWithId(currentAlbumId).getImagePaths().get(0));
remoteViews.setImageViewUri(R.id.the_picture, imageUri);
}

appWidgetManager.updateAppWidget(appWidgetId, remoteViews);
}
}
}

这是我的 AndroidManifest.xml:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.boztalay.puppyframe"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="17" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >

<activity android:name="com.boztalay.puppyframe.configuration.albums.AlbumsActivity" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
</activity>

<activity android:name="com.boztalay.puppyframe.configuration.editalbum.EditAlbumActivity" />

<receiver android:name="com.boztalay.puppyframe.widget.PuppyFrameWidgetProvider" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>

<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/puppyframe_info" />
</receiver>

<service android:name="com.boztalay.puppyframe.widget.ScreenOnService"></service>
</application>

</manifest>

最后,这是我的小部件提供商信息:

<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:minWidth="40dp"
android:minHeight="40dp"
android:minResizeWidth="40dp"
android:minResizeHeight="40dp"
android:updatePeriodMillis="21600000"
android:initialLayout="@layout/puppyframe_widget"
android:configure="com.boztalay.puppyframe.configuration.albums.AlbumsActivity"
android:resizeMode="horizontal|vertical"
android:widgetCategory="home_screen">
</appwidget-provider>

谢谢!

最佳答案

AppWidgetManager 与您的 AppWidgetProvider 交互的方式没有记录在案。该文档声称,如果您有配置 Activity ,则不会调用 onUpdate

实际上,onUpdate 在配置 Activity 开始之前被调用。 Activity 结束时不会调用它。查看您的 onUpdate,似乎如果尚未配置 appwidget,它会将 ImageView 留空。即使没有看到您的配置 Activity ,我猜这是怎么回事:

  • AppWidgetManager 创建新的小部件并调用 onUpdate。由于尚未配置新的小部件,因此您没有将 ImageView 设置为图像。
  • 配置 Activity 运行并设置 RESULT_OK。小部件现已配置,但尚未再次更新,因此 ImageView 仍为空白。
  • 当您调整小部件或移动小部件时,AppWidgetManager 会再次调用 onUpdate。这一次,您的代码读取小部件配置并设置 ImageView。现在小部件显示所选图像。

答案是,当您的配置 Activity 完成时,它应该向您的 AppWidgetProvider 发送一个 Intent ,让它再次更新。不过,这不是万灵药,因为 AppWidgetProvider 中还有其他错误。例如,如果您在配置 Activity 运行时更改方向并重新启动它,AppWidgetProvider 会从屏幕上隐藏应用程序小部件,即使在您完成并返回 RESULT_OK 之后也是如此。在启动器显示时(配置 Activity 完成后)再次更改方向会使应用程序小部件出现。

我知道这一切的原因是我在编写类似的应用程序时遇到了同样的问题,如果您正在努力使用此功能,这可能会对您有所帮助。 Showr 在主屏幕或锁定屏幕上显示图像。图像可以从设备上的其他应用程序(例如图库)中选择,从 URL 下载,或者从 RSS 或 Atom 提要更新。它甚至可以将图像缩放到合适的大小,并可以裁剪它们以适合应用程序小部件。这是一个free download from Google Play .

关于java - 在我开始移动之前,带有 ImageView 的 Android 小部件是不可见的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16727858/

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