Guest User

Untitled

a guest
May 21st, 2018
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. <RelativeLayout
  2. xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_height="match_parent"
  4. android:layout_width="match_parent">
  5. <ScrollView
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent">
  8. <LinearLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:orientation="vertical">
  12.  
  13. A LOT OF CONTENT
  14.  
  15.  
  16. </LinearLayout>
  17. </ScrollView>
  18.  
  19. <Button
  20. android:layout_width="match_parent"
  21. android:layout_height="wrap_content"
  22. android:layout_alignParentBottom="true"
  23. android:id="@+id/add"
  24. android:text="@string/add"
  25. android:paddingTop="23dp"/>
  26. </RelativeLayout>
  27.  
  28. <RelativeLayout
  29. xmlns:android="http://schemas.android.com/apk/res/android"
  30. android:layout_height="match_parent"
  31. android:layout_width="match_parent">
  32. <ScrollView
  33. android:layout_width="match_parent"
  34. android:layout_above="@+id/add"
  35. android:layout_height="match_parent">
  36. <LinearLayout
  37. android:layout_width="match_parent"
  38. android:layout_height="wrap_content"
  39. android:orientation="vertical">
  40.  
  41. A LOT OF CONTENT
  42.  
  43.  
  44. </LinearLayout>
  45. </ScrollView>
  46.  
  47. <Button
  48. android:layout_width="match_parent"
  49. android:layout_height="wrap_content"
  50. android:layout_alignParentBottom="true"
  51. android:id="@+id/add"
  52. android:text="@string/add"
  53. android:paddingTop="23dp"/>
  54. </RelativeLayout>
Add Comment
Please, Sign In to add comment