Guest User

row xml

a guest
Dec 31st, 2016
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.16 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:card_view="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="match_parent"
  5. android:layout_height="wrap_content"
  6. android:background="@color/color_dfdf"
  7. card_view:cardBackgroundColor="@color/color_white"
  8. card_view:cardCornerRadius="@dimen/dimen_editext_padding"
  9. card_view:cardUseCompatPadding="true"
  10. android:id="@+id/ro_lay_root">
  11.  
  12. <LinearLayout
  13. xmlns:app="http://schemas.android.com/tools"
  14. app:ignore="MissingPrefix"
  15. android:orientation="vertical"
  16. android:layout_width="match_parent"
  17. android:layout_height="match_parent">
  18.  
  19. <RelativeLayout android:layout_width="match_parent"
  20. android:layout_height="wrap_content"
  21. android:padding="@dimen/dimen_drawable_padding">
  22.  
  23. <TextView android:id="@+id/ro_tv_orderId"
  24. android:layout_alignParentLeft="true"
  25. style="@style/textView"
  26. android:textColor="@color/color_595959"
  27. android:textAppearance="@style/TextAppearance.AppCompat.Title"
  28. android:layout_width="wrap_content"
  29. fontPath="@string/s_font_Roboto_Medium" />
  30.  
  31. <TextView android:id="@+id/ro_tv_status"
  32. android:gravity="right"
  33. android:textAppearance="@style/TextAppearance.AppCompat.Title"
  34. android:layout_width="wrap_content"
  35. android:layout_alignParentRight="true"
  36. style="@style/textView"
  37. fontPath="@string/s_font_Roboto_Medium"/>
  38. </RelativeLayout>
  39.  
  40. <RelativeLayout android:layout_width="match_parent"
  41. android:background="@color/color_white"
  42. android:layout_height="wrap_content"
  43. android:padding="@dimen/dimen_drawable_padding">
  44.  
  45. <TextView android:id="@+id/ro_tv_dateTime"
  46. android:layout_alignParentLeft="true"
  47. style="@style/textView"
  48. fontPath="@string/s_font_Roboto_Regular"
  49. android:textColor="@color/color_59568"
  50. android:layout_width="wrap_content"/>
  51.  
  52. <TextView android:id="@+id/ro_tv_price"
  53. fontPath="@string/s_font_Roboto_Medium"
  54. android:gravity="right"
  55. android:textStyle="bold"
  56. android:textColor="@color/color_59568"
  57. android:layout_width="wrap_content"
  58. android:layout_alignParentRight="true"
  59. style="@style/textView"/>
  60. </RelativeLayout>
  61.  
  62. <TextView
  63. fontPath="@string/s_font_Roboto_Regular"
  64. android:id="@+id/ro_tv_items"
  65. android:background="@color/color_white"
  66. android:padding="@dimen/dimen_drawable_padding"
  67. android:gravity="left"
  68. android:layout_gravity="left"
  69. android:textStyle="bold"
  70. android:textColor="@color/color_59568"
  71. style="@style/textView"/>
  72. </LinearLayout>
  73. </android.support.v7.widget.CardView>
Add Comment
Please, Sign In to add comment