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.2KB

12345678910111213141516171819202122232425262728293031
  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. <EditText
  6. android:layout_width="wrap_content"
  7. android:layout_height="wrap_content"
  8. android:id="@+id/textSearch"
  9. android:hint="@string/search_stop"
  10. android:layout_alignParentTop="true"
  11. android:layout_alignParentLeft="true"
  12. android:layout_alignParentStart="true"
  13. android:layout_alignParentRight="true"
  14. android:layout_alignParentEnd="true"
  15. android:inputType="text"
  16. android:imeOptions="actionSearch"/>
  17. <android.support.v7.widget.RecyclerView
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:id="@+id/listStops"
  21. android:scrollbars="vertical"
  22. android:fadeScrollbars="true"
  23. android:layout_below="@id/textSearch"
  24. android:layout_alignParentLeft="true"
  25. android:layout_alignParentStart="true"
  26. android:layout_alignParentRight="true"
  27. android:layout_alignParentEnd="true"
  28. android:layout_alignParentBottom="true"/>
  29. </RelativeLayout>