Advertisement
Guest User

test_item.xml

a guest
Jan 28th, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:orientation="vertical" android:layout_width="match_parent"
  5. android:layout_height="match_parent">
  6.  
  7. <TextView
  8. android:id="@+id/testName"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:text="TextView"
  12. android:textColor="#000000"
  13. android:textStyle="bold" />
  14.  
  15. <ImageView
  16. android:id="@+id/testPicture"
  17. android:layout_width="139dp"
  18. android:layout_height="117dp"
  19. android:layout_gravity="start"
  20. app:srcCompat="@drawable/boy" />
  21.  
  22. <TextView
  23. android:id="@+id/testLevel"
  24. android:layout_width="wrap_content"
  25. android:layout_height="wrap_content"
  26. android:text="TextView"
  27. android:textColor="#000000" />
  28.  
  29. <LinearLayout
  30. android:layout_width="match_parent"
  31. android:layout_height="match_parent"
  32. android:orientation="horizontal">
  33.  
  34. </LinearLayout>
  35. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement