我的应用使用RecyclerView
。这是RecyclerView
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/cvExpenses"
android:layout_height="wrap_content"
android:layout_width="match_parent"
card_view:cardCornerRadius="5dp"
android:layout_margin="5dp"
card_view:cardBackgroundColor="#009dde"
>
<LinearLayout
android:orientation="horizontal" android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="4dip">
<TextView
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="0"
android:visibility="gone"
android:id="@+id/tvGuestID" />
<TextView
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="0.7"
android:id="@+id/tvGuestName"
android:textColor="#ffffff" />
<Switch
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="0.3"
android:id="@+id/swCheckIn"
android:clickable="true"
android:textOff="no"
android:textOn="yes" />
</LinearLayout>
</android.support.v7.widget.CardView>
现在我得到了RecyclerView
中我想要切换它的开关的项目索引,所以这就是我做的方式:
indexOfGuestIdToCheckIn = listGuestID.indexOf(guestIdToCheckIn);
View view = rvGuestList.getChildAt(indexOfGuestIdToCheckIn);
Switch swCheckIn = (Switch) view.findViewById(R.id.swCheckIn);
swCheckIn.setChecked(true);
我认为上面的代码会在我的recyclerview中切换所选项目的开关,而是在NullPointerException
返回Switch swCheckIn = (Switch) view.findViewById(R.id.swCheckIn);
答案 0 :(得分:1)
如果您的观看次数在屏幕上不可见,那么您的观看次数尚未充分。this answer已说明。该链接还提供了一个有趣的解决方案,您可以查看。
对于您的情况,您应该在适配器getView()内部跟踪您的模型/对象,并通过根据您的ID列表以及它应该具有的值来检查它是否应该被检查。
Model