Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

favourite_stop_recycler_view_item.xml 1.3KB

12345678910111213141516171819202122232425262728293031323334
  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. android:text="@string/loading_schedules"
  19. tools:text="Stop name"
  20. android:gravity="center_vertical"
  21. android:layout_weight="1.0"/>
  22. <TextView
  23. android:layout_width="match_parent"
  24. android:layout_height="wrap_content"
  25. android:id="@+id/textView2"
  26. android:clickable="false"
  27. android:focusable="false"
  28. tools:text="09h42 10h12"
  29. android:gravity="center_vertical"
  30. android:text="@string/loading_schedules"
  31. android:layout_weight="1.0"/>
  32. </LinearLayout>