Skip to content

Commit d552f30

Browse files
committed
Fix RecyclerView adapter position lint error
Use ViewHodler.getAdapterPosition() instead of method position.
1 parent c256969 commit d552f30

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

demos/custom-tabs-example-app/src/main/java/org/chromium/customtabsdemos/DemoListActivity.java

+1
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ public ViewHolder onCreateViewHolder(@NonNull ViewGroup viewGroup, int position)
135135

136136
@Override
137137
public void onBindViewHolder(ViewHolder viewHolder, int position) {
138+
position = viewHolder.getAdapterPosition();
138139
final ActivityDesc activityDesc = mActivityDescs.get(position);
139140
String title = activityDesc.mTitle;
140141
String description = activityDesc.mDescription;

0 commit comments

Comments
 (0)