我实施了一个RemoteViewsService
的小部件,其中包含ListView
项,其中所有项都可以点击以启动服务。简而言之,我在我的setPendingIntentTemplate
中使用AppWidgetProvider.onUpdate()
,在setOnClickFillInIntent
中使用RemoteViewsService.RemoteViewsFactory()
。
在大多数情况下,我得到了预期的行为。但是,当用完一些内存并返回尝试再次单击列表中的项目有时单击列表中的项目时没有任何反应:该服务未启动,并没有给出任何触摸反馈。如果我有几个小部件,其中一个列表可能有问题,而其他人不会。
有谁知道如何解决这个问题?
其他一些测试显示:
RemoteViewsService.RemoteViewsFactory.onDestroy
以查看问题的原因是否已删除,但事实并非如此。AppWidgetManager.updateAppWidget
(以便运行AppWidgetProvider.onUpdate),问题就会消失(我从主应用程序中调用updateAppWidget)。这三个观察结果似乎指出AppWidgetManager中的问题而不是RemoteViewsFactory。
AppWidgetProvider.onUpdate:
@Override
public void onUpdate(Context iContext, AppWidgetManager iWidgetMgr,
int[] iWidgetIds){
Log.d(DbgU.getAppTag(), DbgU.getMethodName());
//Going through all widgets placed (could be more than one)
for(int i = 0; i < iWidgetIds.length; i++){
//Setting up the remote view service
Intent tmpRVServiceIntent = new Intent(iContext,
RemoteViewsServiceC.class);
tmpRVServiceIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID,
iWidgetIds[i]);
tmpRVServiceIntent.setData(Uri.parse(tmpRVServiceIntent.toUri(
Intent.URI_INTENT_SCHEME)));
//Setting up the remote views
RemoteViews tmpRemoteViews = new RemoteViews(iContext.getPackageName(),
R.layout.widget);
tmpRemoteViews.setRemoteAdapter(R.id.widget_listview,
tmpRVServiceIntent);
tmpRemoteViews.setEmptyView(R.id.widget_listview,
R.id.widget_empty_view);
//Setting up the pending intent template (the id will be filled
//in later in RemoteViewsFactoryC.getViewAt())
Intent tmpTemplateIntent = new Intent(iContext,
LauncherServiceC.class);
tmpTemplateIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID,
iWidgetIds[i]);
PendingIntent tmpPendingIntent = PendingIntent.getService(iContext,
0, tmpTemplateIntent, PendingIntent.FLAG_UPDATE_CURRENT);
tmpRemoteViews.setPendingIntentTemplate(R.id.widget_listview,
tmpPendingIntent);
//Applying the update for the views
iWidgetMgr.updateAppWidget(iWidgetIds[i], tmpRemoteViews);
}
}
RemoteViewsService.RemoteViewsFactory.getViewAt:
@Override
public RemoteViews getViewAt(int inPosition) {
Log.v(DbgU.getAppTag(), DbgU.getMethodName()
+ ", inPosition = " + inPosition);
//Moving the cursor to the current position
mItemCursor.moveToPosition(inPosition);
//Extracting values from the database
String tmpName = mItemCursor.getString(
mItemCursor.getColumnIndexOrThrow(ItemTableM.COLUMN_NAME));
long tmpItemId = mItemCursor.getLong(
mItemCursor.getColumnIndexOrThrow(ItemTableM.COLUMN_ID));
Uri tmpItemUri = DatabaseU.getItemUriFromId(tmpItemId);
//Setting up the remote views object
RemoteViews retRemoteViews = new RemoteViews(
mContext.getPackageName(), R.layout.widget_listitem);
retRemoteViews.setTextViewText(R.id.widget_listitem_textView, tmpName);
//Adding action URI to the intent template which was set for all the
//list rows in WidgetProviderC.onUpdate
Intent tmpFillInIntent = new Intent();
tmpFillInIntent.setData(tmpItemUri);
retRemoteViews.setOnClickFillInIntent(R.id.widget_listitem_textView,
tmpFillInIntent);
return retRemoteViews;
}
我已经有很长一段时间遇到这个问题了,非常感谢任何帮助
答案 0 :(得分:1)
我长期以来也遇到过同样的问题。
在拥有Android 4.0的索尼设备上,如果您滑动到另一个主窗格然后再回到窗口小部件所在的窗格,则窗口小部件列表元素将无法点击。索尼Android 4.1及以上版本没有这个问题,但有时它们显示错误的列表元素。 在一些拥有Android 4.1的三星设备上,我遇到了同样的问题。 Android 4.0模拟器主屏幕没有这个问题。
我试图以多种方式修复它,也是这样:stackoverflow.com/questions/21891008/a-textview-in-a-listview-s-row-cannot-click-after-setting-descendantfocusabilit
然而,我无法解决导致我认为这是主屏问题的问题。 为了证实这一点,我决定在索尼Android 4.0设备上安装“Go Launcher”,一切都运行正常!
答案:这是一个主屏幕问题,如果不使用某种黑客攻击,很可能无法解决。请告诉我,我错了。