带有ListView的Widget会对每个找到的项目显示 "加载"。

问题描述 投票:1回答:1

我试图为我的Android应用构建一个小部件,但我遇到了一个问题,即当ListView的 是否 查找数据(通过调试器,我可以看到我的RemoteViewFactory实现中的getViewAt方法被调用,并返回一个合适的RemoteViews),每找到一个条目,在我的widget中只是显示为 "加载..."

Android emulator screenshot showing widget with four entries, all four showing 'loading'

郑重声明:在我的数据库中确实找到了4个条目,而且getViewAt方法被调用了4次,每次都返回一个合适的列表项。

我的代码是基于 安卓文档在使用了 StackView示例 作为技术参考。

在尝试解决这个问题的过程中,我查阅了stackoverflow,发现了一些 过去的 疑问. 最常见的修复建议是

  • 确保getViewTypeCount方法返回一个0以外的值(通常是1,因为大多数widgets只会使用一种视图类型)。
  • 确保只有 支持的观点 被使用。
  • 一些比较模糊的建议,因为一些任意的视图属性应该或不应该被使用。

我已经尝试了上面所有的建议,并且只使用支持的视图,但我的项目仍然没有显示。这里有人有办法吗?

我写的相关代码列表。

添加到我的AndroidManifest.xml文件中的条目:

    <service
        android:name=".widget.DfdWidgetService"
        android:permission="android.permission.BIND_REMOTEVIEWS" />

    <receiver android:name=".widget.DfdWidget">
        <intent-filter>
            <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
        </intent-filter>

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

小部件布局xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#80DDE8ED"
android:padding="@dimen/widget_margin">

<ListView
    android:id="@+id/widgetRemindersListView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:listitem="@layout/dfd_widget_list_item">

</ListView>

<TextView
    android:id="@+id/widgetEmptyViewText"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="You have no reminders for today, nice!"
    android:textAlignment="center"
    android:textSize="20sp" />

</RelativeLayout>

小工具列表项xml

(作为测试,我确实尝试过删除除TextViews以外的所有内容,看看Android是否没有发现ImageViews有问题。但这并不重要。)

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/widgetListItem"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ImageView
    android:id="@+id/widgetCompletedCheckBox"
    android:layout_width="20dp"
    android:layout_height="20dp"
    android:layout_alignParentStart="true"
    android:layout_marginStart="10dp"
    android:layout_marginTop="15dp"
    android:layout_marginEnd="10dp"
    android:layout_marginBottom="10dp"
    app:srcCompat="@android:drawable/checkbox_off_background" />

<TextView
    android:id="@+id/widgetReminderName"
    android:layout_width="match_parent"
    android:layout_height="30dp"
    android:layout_toEndOf="@id/widgetCompletedCheckBox"
    android:text="Reminder name"
    android:textColor="#000000"
    android:textSize="24sp" />

<TextView
    android:id="@+id/widgetReminderDate"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@id/widgetReminderName"
    android:layout_toEndOf="@id/widgetCompletedCheckBox"
    android:text="Ma 1 jan"
    android:textColor="#2196F3" />

<ImageView
    android:id="@+id/widgetReminderRepeating"
    android:layout_width="20dp"
    android:layout_height="20dp"
    android:layout_below="@id/widgetReminderName"
    android:layout_toEndOf="@id/widgetReminderDate"
    android:background="#00FFFFFF"
    app:srcCompat="@android:drawable/ic_menu_revert"
    tools:visibility="invisible" />

<ImageView
    android:id="@+id/widgetIsImportant"
    android:layout_width="40dp"
    android:layout_height="40dp"
    android:layout_alignParentEnd="true"
    app:srcCompat="@android:drawable/btn_star_big_off" />
</RelativeLayout>

小部件提供者类

public class DfdWidget extends AppWidgetProvider {

    static void updateAppWidget(Context context, AppWidgetManager appWidgetManager, int appWidgetId) {
        Intent intent = new Intent(context, DfdWidgetService.class);

        RemoteViews remoteViews = new RemoteViews(context.getPackageName(), R.layout.dfd_widget);
        remoteViews.setRemoteAdapter(R.id.widgetRemindersListView, intent);
        remoteViews.setEmptyView(R.id.widgetRemindersListView, R.id.widgetEmptyViewText);

        // Instruct the widget manager to update the widget
        appWidgetManager.updateAppWidget(appWidgetId, remoteViews);
    }

    @Override
    public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
        // There may be multiple widgets active, so update all of them
        for (int appWidgetId : appWidgetIds) {
            updateAppWidget(context, appWidgetManager, appWidgetId);
        }
        super.onUpdate(context, appWidgetManager, appWidgetIds);
    }

    @Override
    public void onEnabled(Context context) {
        super.onEnabled(context);
    }

    @Override
    public void onReceive(Context context, Intent intent) {
        super.onReceive(context, intent);
    }

    @Override
    public void onRestored(Context context, int[] oldWidgetIds, int[] newWidgetIds) {
        super.onRestored(context, oldWidgetIds, newWidgetIds);
    }
}

小工具服务类

public class DfdWidgetService extends RemoteViewsService {
    @Override
    public RemoteViewsFactory onGetViewFactory(Intent intent) {
        return new DfdRemoteViewsFactory(getApplicationContext());
    }

    class DfdRemoteViewsFactory implements RemoteViewsService.RemoteViewsFactory {
        private final Context context;
        private ReminderRepository reminderRepository;
        private List<Reminder> reminders;

        public DfdRemoteViewsFactory(Context context) {
            this.context = context;
            this.reminderRepository = ReminderRepository.getReminderRepository(context);
        }

        @Override
        public void onCreate() {
            reminders = reminderRepository.getAllRemindersForTodayList();
        }

        @Override
        public void onDataSetChanged() {
            reminders = reminderRepository.getAllRemindersForTodayList();
        }

        @Override
        public void onDestroy() {
            reminders.clear();
        }

        @Override
        public int getCount() {
            return reminders.size();
        }

        @Override
        public RemoteViews getViewAt(int position) {
            Reminder reminder = reminders.get(position);
            RemoteViews remoteView = new RemoteViews(context.getPackageName(), R.id.widgetListItem);

            remoteView.setTextViewText(R.id.widgetReminderName, reminder.getName());
            // Removed code that sets the other fields as I tried it with and without and it didn't matter. So removed for brevity

            return remoteView;
        }

        @Override
        public RemoteViews getLoadingView() {
            return null;
        }

        @Override
        public int getViewTypeCount() {
            return 1;
        }

        @Override
        public long getItemId(int position) {
            return reminders.get(position).getId();
        }

        @Override
        public boolean hasStableIds() {
            return true;
        }
    }
}
android android-listview android-widget
1个回答
1
投票
RemoteViews remoteView = new RemoteViews(context.getPackageName(), R.id.widgetListItem)

RemoteViews 构造函数,你正试图使用 将布局资源 ID 作为第二个参数。您传递的是一个小组件 ID。

所以,替换 R.id.widgetListItemR.layout.whateverYourLayoutNameIsForTheListItems,其中你替换为 whateverYourLayoutNameIsForTheListItems 列表项的布局名称。

© www.soinside.com 2019 - 2024. All rights reserved.