Advertisement
Guest User

Untitled

a guest
Nov 16th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5.  
  6. <android.support.v7.widget.CardView
  7. android:layout_width="match_parent"
  8. android:layout_height="match_parent" >
  9.  
  10. <LinearLayout
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent"
  13. android:orientation="horizontal">
  14.  
  15. <TextView
  16. android:id="@+id/textView"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:layout_weight="1"
  20. android:text="TextView" />
  21.  
  22. <TextView
  23. android:id="@+id/textView2"
  24. android:layout_width="wrap_content"
  25. android:layout_height="wrap_content"
  26. android:layout_weight="1"
  27. android:text="TextView" />
  28. </LinearLayout>
  29. </android.support.v7.widget.CardView>
  30. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement