我用清单视图创建一个appwidget。
在RemoteViewsFactory类中,我从SQLite数据库填充列表。一切都很好,但是如果我在updateWidget()方法中放一个字符串,则比在RemoteViewsFactory的getViewAt方法中得到IndexOutOfBoundsException更好。

它没有逻辑为什么会导致异常。因为在updateWidget()方法中,我仅将文本设置为一个remoteview。

这是导致问题的代码列表和字符串:

static void updateAppWidget(Context context, AppWidgetManager appWidgetManager, int appWidgetId)
{
    SharedPreferences sPreferences = context.getSharedPreferences("WidgetSettings_"+appWidgetId,0);
    RemoteViews rv = new RemoteViews(context.getPackageName(), R.layout.initial_layout);
    DBHelper dbHelper = DBHelper.getInstance(context);

    // To avoid Exception in a RemoteViewsFactory.getViewAt() method just comment or delete this line
    rv.setTextViewText(R.id.textViewListTotal, "Total sum of items"); // this line cause an Exception. If I commenting it then all is OK


    final Intent intent = new Intent(context, WidgetRemoteViewsService.class);
    intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
    intent.setData(Uri.parse(intent.toUri(Intent.URI_INTENT_SCHEME)));
    rv.setRemoteAdapter(appWidgetId, R.id.items_list, intent);

    rv.setEmptyView(R.id.items_list, R.id.empty_view);

    final Intent actionIntent = new Intent(context, WidgetProvider.class);
    actionIntent.setAction(WidgetProvider.ACTION_MANAGE);
    actionIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
    actionIntent.setData(Uri.parse(actionIntent.toUri(Intent.URI_INTENT_SCHEME)));
    PendingIntent actionPendingIntent = PendingIntent.getBroadcast(context, 0, actionIntent,
            PendingIntent.FLAG_UPDATE_CURRENT);
    rv.setPendingIntentTemplate(R.id.items_list, actionPendingIntent);

    appWidgetManager.updateAppWidget(appWidgetId, rv);
    appWidgetManager.notifyAppWidgetViewDataChanged(appWidgetId, R.id.items_list);
}

最佳答案

我用一个已知的解决方案做到了。在getViewAt方法中,我粘贴如下检查语句:

@Override
public RemoteViews getViewAt(int position) {

    RemoteViews rv = new RemoteViews(context.getPackageName(), R.layout.list_item);

    try {
        if(ListItems.size() > 0) //<------- avoid indexoutofbound exception
        {
           // doing something with a remoteviews
        }
    }
    catch (IndexOutOfBoundsException e)
    {
        e.printStackTrace();
    }

    return rv;
}

10-07 19:14