You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

simple_recycler_view_item.xml 589B

12345678910111213
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <TextView xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@android:id/text1"
  4. android:layout_width="match_parent"
  5. android:layout_height="wrap_content"
  6. android:textAppearance="?android:attr/textAppearanceListItemSmall"
  7. android:gravity="center_vertical"
  8. android:minHeight="?android:attr/listPreferredItemHeightSmall"
  9. android:focusable="true"
  10. android:clickable="true"
  11. android:foreground="?android:attr/selectableItemBackground">
  12. </TextView>