Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. 1 <?xml version="1.0" encoding="utf-8"?>
  2. 2 <android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
  3. 3 android:layout_width="match_parent"
  4. 4 android:layout_height="wrap_content"
  5. 5 xmlns:card_view="http://schemas.android.com/apk/res-auto"
  6. 6 android:id="@+id/cardView"
  7. 7 card_view:cardCornerRadius="6dp"
  8. 8 card_view:cardElevation="3dp"
  9. 9 card_view:cardUseCompatPadding="true">
  10. 10
  11. 11 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  12. 12 android:layout_width="match_parent"
  13. 13 android:layout_height="wrap_content"
  14. 14 android:layout_margin="5dp"
  15. 15 android:orientation="horizontal"
  16. 16 android:padding="5dp">
  17. 17
  18. 18 <ImageView
  19. 19 android:id="@+id/logo"
  20. 20 android:layout_width=“60dp”
  21. 21 android:layout_height=“60dp" />
  22. 22
  23. 23 <TextView
  24. 24 android:id="@+id/club_name"
  25. 25 android:layout_marginStart="10dp"
  26. 26 android:layout_width="match_parent"
  27. 27 android:layout_height="wrap_content"
  28. 28 android:textColor="@color/black"
  29. 29 android:textStyle="bold"
  30. 30 android:textSize="15sp"/>
  31. 31
  32. 32 </LinearLayout>
  33. 33
  34. 34 </android.support.v7.widget.CardView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement