Guest User

Untitled

a guest
Dec 18th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. android:nextFocusForward="@id/rv_catalog"
  2. android:nextFocusDown="@id/rv_catalog"
  3. android:nextFocusUp="@id/rv_catalog"
  4. android:nextFocusRight="@id/rv_catalog"
  5. android:nextFocusLeft="@id/rv_catalog"
  6.  
  7. //выставляем фокус автоматом
  8. if (position == 0)
  9. holder.cardView.requestFocus();
  10. else if (position == getItemCount() - 1)
  11. holder.cardView.setNextFocusDownId(holder.cardView.getId());
  12. //блочим нажатие вниз
Add Comment
Please, Sign In to add comment