Guest User

Untitled

a guest
Jan 17th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. <RelativeLayout
  2. android:layout_width="match_parent"
  3. android:layout_height="match_parent">
  4.  
  5. <ScrollView
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. android:layout_above="@+id/txt"
  9. android:orientation="vertical">
  10.  
  11. <LinearLayout
  12. android:layout_width="match_parent"
  13. android:layout_height="match_parent"
  14. android:orientation="vertical">
  15. <!-- Your content goes here-->
  16.  
  17. </LinearLayout>
  18. </ScrollView>
  19.  
  20. <TextView
  21. android:id="@+id/txt"
  22. android:layout_width="match_parent"
  23. android:layout_height="wrap_content"
  24. android:layout_alignParentBottom="true"
  25. android:layout_centerHorizontal="true"
  26. android:layout_gravity="center_horizontal"
  27. android:gravity="center_horizontal"
  28. android:text="TextView"
  29. android:textSize="24sp" />
  30.  
  31. </RelativeLayout>
Add Comment
Please, Sign In to add comment