I have an AppWidget
with a ListView
. To populate the ListView
I'm using RemoteViewsFactory
. In its getViewAt(int position)
method which returns a RemoteViews
object I fill my row with information.
How can I disable clicking on a ListView
item? RemoteViews
has no setEnabled()
method that I would use for a 'normal' ListView
.