Advertisement
Guest User

Untitled

a guest
Oct 21st, 2014
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:background="@drawable/bg"
  7. tools:context="buses.antik.com.kdemasauto.VehiclesFragment">
  8.  
  9. <EditText
  10. android:id="@+id/vehicle_search_edit_text"
  11. android:layout_width="fill_parent"
  12. android:layout_height="45dp"
  13. android:focusable="true"
  14. android:hint="Search"
  15. android:imeOptions="actionSearch"
  16. android:singleLine="true" />
  17.  
  18. <ListView
  19. android:id="@+id/list_vehicles"
  20. android:layout_width="fill_parent"
  21. android:layout_height="fill_parent"
  22. android:layout_below="@+id/vehicle_search_edit_text"
  23. android:animateLayoutChanges="true"
  24. android:fastScrollEnabled="true"
  25. />
  26. </RelativeLayout>
  27.  
  28. <?xml version="1.0" encoding="utf-8"?>
  29.  
  30. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  31. android:id="@+id/layout_root"
  32. android:layout_width="match_parent"
  33. android:layout_height="match_parent">
  34.  
  35. <RelativeLayout
  36. android:id="@+id/layout_root_map"
  37. android:layout_width="match_parent"
  38. android:layout_height="match_parent" />
  39.  
  40. <RelativeLayout
  41. android:id="@+id/layout_root_vehicles"
  42. android:layout_width="350dp"
  43. android:layout_height="match_parent"
  44. android:layout_alignParentBottom="true"
  45. android:layout_alignParentRight="true" />
  46.  
  47. <RelativeLayout
  48. android:id="@+id/layout_root_settings"
  49. android:layout_width="300dp"
  50. android:layout_height="wrap_content"
  51. android:layout_alignParentBottom="true"
  52. android:layout_alignParentRight="true" />
  53.  
  54. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement