Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. xmlns:app="http://schemas.android.com/apk/res-auto"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. tools:context=".MainActivity"
  9. android:orientation="horizontal"
  10. >
  11. <TextView
  12. android:text="hello world"
  13. android:layout_width="0dp"
  14. android:layout_weight="1"
  15. android:layout_height="wrap_content"
  16. />
  17. <TextView
  18. android:text="hello world"
  19. android:layout_width="0dp"
  20. android:layout_weight="1"
  21. android:layout_height="wrap_content"
  22. />
  23. <TextView
  24. android:text="hello world"
  25. android:layout_width="0dp"
  26. android:layout_weight="1"
  27. android:layout_height="wrap_content"
  28. />
  29.  
  30.  
  31.  
  32. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement