Advertisement
Guest User

Untitled

a guest
Jun 14th, 2015
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.28 KB | None | 0 0
  1. <android.support.v7.widget.CardView
  2. android:layout_width="match_parent"
  3. android:layout_height="wrap_content"
  4. android:layout_margin="@dimen/card_margin">
  5.  
  6. <LinearLayout
  7. style="@style/Widget.CardContent"
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content">
  10.  
  11. <TextView
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content"
  14. android:text="Info"
  15. android:textAppearance="@style/TextAppearance.AppCompat.Title" />
  16.  
  17. <TextView
  18. android:layout_width="match_parent"
  19. android:layout_height="wrap_content"
  20. android:text="@string/description_sample" />
  21.  
  22. </LinearLayout>
  23.  
  24. </android.support.v7.widget.CardView>
  25.  
  26. <android.support.v7.widget.CardView
  27. android:layout_width="match_parent"
  28. android:layout_height="wrap_content"
  29. android:layout_marginBottom="@dimen/card_margin"
  30. android:layout_marginLeft="@dimen/card_margin"
  31. android:layout_marginRight="@dimen/card_margin">
  32.  
  33. <LinearLayout
  34. style="@style/Widget.CardContent"
  35. android:layout_width="match_parent"
  36. android:layout_height="wrap_content">
  37.  
  38. <TextView
  39. android:layout_width="match_parent"
  40. android:layout_height="wrap_content"
  41. android:text="More info"
  42. android:textAppearance="@style/TextAppearance.AppCompat.Title" />
  43.  
  44. <TextView
  45. android:layout_width="match_parent"
  46. android:layout_height="wrap_content"
  47. android:text="@string/description_sample" />
  48.  
  49. </LinearLayout>
  50.  
  51. </android.support.v7.widget.CardView>
  52.  
  53. <android.support.v7.widget.CardView
  54. android:layout_width="match_parent"
  55. android:layout_height="wrap_content"
  56. android:layout_marginBottom="@dimen/card_margin"
  57. android:layout_marginLeft="@dimen/card_margin"
  58. android:layout_marginRight="@dimen/card_margin">
  59.  
  60. <LinearLayout
  61. style="@style/Widget.CardContent"
  62. android:layout_width="match_parent"
  63. android:layout_height="wrap_content">
  64.  
  65. <TextView
  66. android:layout_width="match_parent"
  67. android:layout_height="wrap_content"
  68. android:text="More info 2"
  69. android:textAppearance="@style/TextAppearance.AppCompat.Title" />
  70.  
  71. <TextView
  72. android:layout_width="match_parent"
  73. android:layout_height="wrap_content"
  74. android:text="@string/description_sample" />
  75.  
  76. </LinearLayout>
  77.  
  78. </android.support.v7.widget.CardView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement