Advertisement
Guest User

Untitled

a guest
Feb 24th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.77 KB | None | 0 0
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:fitsSystemWindows="true">
  7.  
  8. <fragment xmlns:android="http://schemas.android.com/apk/res/android"
  9. xmlns:tools="http://schemas.android.com/tools"
  10. xmlns:map="http://schemas.android.com/apk/res-auto"
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent"
  13. android:id="@+id/map"
  14. tools:context="com.example.ns.appversion1.MapActivityFragment1"
  15. android:name="com.google.android.gms.maps.SupportMapFragment"/>
  16.  
  17. <FrameLayout
  18. android:layout_width="match_parent"
  19. android:layout_height="wrap_content"
  20. android:layout_alignParentTop="true" >
  21.  
  22. <LinearLayout
  23. android:layout_width="match_parent"
  24. android:layout_height="wrap_content"
  25. android:orientation="vertical"
  26. android:weightSum="2" >
  27.  
  28. <TextView
  29. android:layout_width="wrap_content"
  30. android:layout_height="wrap_content"
  31. android:layout_marginTop="5dp"
  32. android:layout_marginLeft="5dp"
  33. android:layout_weight="1"
  34. android:gravity="left"
  35. android:padding="3dp"
  36. android:id="@+id/textRefresh"
  37. android:background="@drawable/border"
  38. android:text="Refreshing 1"
  39. android:textColor="#03A9FA"
  40. android:textSize="10sp" />
  41.  
  42.  
  43. </LinearLayout>
  44. </FrameLayout>
  45.  
  46. </RelativeLayout>
  47.  
  48. <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
  49. xmlns:tools="http://schemas.android.com/tools"
  50. xmlns:app="http://schemas.android.com/apk/res-auto"
  51. android:layout_width="match_parent"
  52. android:layout_height="match_parent"
  53. android:fitsSystemWindows="true">
  54.  
  55. <fragment xmlns:android="http://schemas.android.com/apk/res/android"
  56. xmlns:tools="http://schemas.android.com/tools"
  57. xmlns:map="http://schemas.android.com/apk/res-auto"
  58. android:layout_width="match_parent"
  59. android:layout_height="match_parent"
  60. android:id="@+id/map"
  61. tools:context="com.example.ns.appversion1.MapActivityFragment1"
  62. android:name="com.google.android.gms.maps.SupportMapFragment"/>
  63.  
  64. <FrameLayout
  65. android:layout_width="match_parent"
  66. android:layout_height="wrap_content"
  67. android:layout_alignParentTop="true" >
  68.  
  69. <LinearLayout
  70. android:layout_width="match_parent"
  71. android:layout_height="wrap_content"
  72. android:orientation="vertical"
  73. android:weightSum="2" >
  74.  
  75. <TextView
  76. android:layout_width="wrap_content"
  77. android:layout_height="wrap_content"
  78. android:layout_marginTop="5dp"
  79. android:layout_marginLeft="5dp"
  80. android:layout_weight="1"
  81. android:gravity="left"
  82. android:padding="3dp"
  83. android:id="@+id/textRefresh"
  84. android:background="@drawable/border"
  85. android:text="Refreshing 1"
  86. android:textColor="#03A9FA"
  87. android:textSize="10sp" />
  88.  
  89.  
  90. </LinearLayout>
  91. </FrameLayout>
  92.  
  93. <android.support.v4.widget.NestedScrollView
  94. android:id="@+id/bottom_sheet"
  95. android:layout_width="match_parent"
  96. android:layout_height="350dp"
  97. android:clipToPadding="true"
  98. app:layout_behavior="android.support.design.widget.BottomSheetBehavior"
  99. >
  100.  
  101.  
  102.  
  103. </android.support.v4.widget.NestedScrollView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement