Advertisement
Guest User

Untitled

a guest
May 27th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. <android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:card_view="http://schemas.android.com/apk/res-auto"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. card_view:cardCornerRadius="6dp"
  6. card_view:cardElevation="3dp"
  7. card_view:cardUseCompatPadding="true">
  8.  
  9. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:layout_margin="5dp"
  13. android:orientation="vertical"
  14. android:padding="5dp">
  15.  
  16. <!-- Text Notice Name -->
  17. <TextView
  18. android:id="@+id/txt_producto_nombre"
  19. android:layout_width="match_parent"
  20. android:layout_height="wrap_content"
  21. android:textStyle="bold"
  22. android:padding="3dp"/>
  23.  
  24. <!-- Text Notice Description -->
  25. <TextView
  26. android:id="@+id/txt_producto_descripcion"
  27. android:layout_width="match_parent"
  28. android:layout_height="wrap_content"
  29. android:padding="3dp" />
  30.  
  31. <!-- Text Notice FilePath -->
  32. <TextView
  33. android:id="@+id/txt_producto_precio"
  34. android:layout_width="match_parent"
  35. android:layout_height="wrap_content"
  36. android:textSize="12sp"
  37. android:padding="3dp"/>
  38.  
  39. </LinearLayout>
  40.  
  41. </android.support.v7.widget.CardView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement