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.

favourite_stop_recycler_view_item.xml 1.3KB

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:orientation="vertical"
  5. android:layout_width="match_parent"
  6. android:layout_height="wrap_content"
  7. android:clickable="true"
  8. android:foreground="?android:attr/selectableItemBackground"
  9. android:minHeight="?android:attr/listPreferredItemHeightSmall"
  10. android:weightSum="1">
  11. <TextView
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content"
  14. android:textAppearance="?android:attr/textAppearanceListItemSmall"
  15. android:id="@+id/textView"
  16. android:clickable="false"
  17. android:focusable="false"
  18. tools:text="Stop name"
  19. android:gravity="center_vertical"
  20. android:layout_weight="1.0"/>
  21. <TextView
  22. android:layout_width="match_parent"
  23. android:layout_height="wrap_content"
  24. android:id="@+id/textView2"
  25. android:clickable="false"
  26. android:focusable="false"
  27. tools:text="09h42 10h12"
  28. android:gravity="center_vertical"
  29. android:text="@string/loading_schedules"
  30. android:layout_weight="1.0"/>
  31. </LinearLayout>