Мне нравится добавлять onClick Listener в каждый элемент моего списка, но ничто из того, что я пробовал, не работает.как подключить прослушиватель onClick к элементу списка в виджетах приложения
Вот мой RemoteViewsFactory:
public class MyRemoteViewsFactory implements RemoteViewsService.RemoteViewsFactory {
[...]
public RemoteViews getViewAt(int position) {
final RemoteViews remoteView = new RemoteViews(
context.getPackageName(), R.layout.widget_item);
[...]
final Intent activityIntent = new Intent(context, ListActivity.class);
activityIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
activityIntent.putExtra(AppWidgetManager.ACTION_APPWIDGET_PICK, position);
PendingIntent pI = PendingIntent.getActivity(
context, appWidgetId, activityIntent, PendingIntent.FLAG_UPDATE_CURRENT);
remoteView.setOnClickPendingIntent(R.id.item_frame, pI);
return remoteView;
}
}
список-widget.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/widget_frame"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical" >
<include layout="@layout/picture_frame" />
<ListView
android:id="@+id/list_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_toRightOf="@+id/picframe"
android:layout_margin="5dp"
android:gravity="center"
android:loopViews="true" />
</RelativeLayout>
список-item.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/item_frame"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center_horizontal"
android:layout_centerVertical="true" >
<TextView
android:id="@+id/date"
style="@style/WidgetItemText" />
<TextView
android:id="@+id/name"
style="@style/WidgetItemText" />
</LinearLayout>
Если я нажимаю элемент, ничего не произойдет.
Умышленное намерение работает правильно, если я вися его в провайдере непосредственно в списке, но тогда я больше не могу прокручивать и не отвечать на отдельные элементы.
Hi; где я должен это делать? RemoteViewsFactory не имеет метода getListView(). https://developer.android.com/reference/android/widget/RemoteViewsService.RemoteViewsFactory.html – Wookiee
Вы можете сделать: 'ListView l = (ListView) findViewById (R.layout.file_that_you_inflate);' и затем 'l.setOnItemClickListener (новый OnItemClickListener() { @Override общественные недействительный onItemClick (AdapterView > arg0, Вид arg1, внутр позиция, длинная arg3) { Toast.makeText (SuggestionActivity.this, "" + позиция, Toast.LENGTH_SHORT) .show(); } }); ' – mychemicalro
Для listView у вас также есть адаптер. – mychemicalro