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.

fragment_stop_route_picker.xml 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5. <LinearLayout
  6. android:orientation="vertical"
  7. android:layout_width="match_parent"
  8. android:layout_height="match_parent"
  9. android:layout_alignParentTop="true"
  10. android:layout_alignParentLeft="true"
  11. android:layout_alignParentStart="true"
  12. android:layout_above="@+id/btnSave">
  13. <TextView
  14. android:layout_width="match_parent"
  15. android:layout_height="wrap_content"
  16. android:textAppearance="?android:attr/textAppearanceMedium"
  17. android:text="@string/pick_routes"
  18. android:id="@+id/textView"/>
  19. <android.support.v7.widget.RecyclerView
  20. android:layout_width="match_parent"
  21. android:layout_height="match_parent"
  22. android:id="@+id/listRoutes"
  23. android:scrollbars="vertical"
  24. android:fadeScrollbars="true"/>
  25. </LinearLayout>
  26. <Button
  27. android:text="@string/save"
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"
  30. android:id="@+id/btnSave"
  31. android:layout_alignParentBottom="true"
  32. android:layout_alignParentLeft="true"
  33. android:layout_alignParentStart="true"
  34. android:layout_alignParentRight="true"
  35. android:layout_alignParentEnd="true"
  36. android:enabled="false"/>
  37. </RelativeLayout>