zzz_my_feedback_item.xml 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:background="@drawable/zzz_my_feedback_item_bg">
  6. <TextView
  7. android:id="@+id/zzz_question"
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:layout_marginLeft="@dimen/zzz_my_question_margin_left"
  11. android:layout_marginRight="@dimen/zzz_my_question_margin_right"
  12. android:layout_marginTop="@dimen/zzz_my_question_margin_top"
  13. android:includeFontPadding="false"
  14. android:textColor="@color/zzz_my_question_text"
  15. android:textSize="@dimen/zzz_my_question_text_size"/>
  16. <TextView
  17. android:id="@+id/zzz_question_time"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:layout_alignParentRight="true"
  21. android:layout_below="@id/zzz_question"
  22. android:layout_marginRight="@dimen/zzz_my_question_time_margin_right"
  23. android:layout_marginTop="@dimen/zzz_my_question_time_margin_top"
  24. android:includeFontPadding="false"
  25. android:textColor="@color/zzz_my_question_time_text"
  26. android:textSize="@dimen/zzz_my_feedback_time_text_size"/>
  27. <RelativeLayout
  28. android:layout_width="match_parent"
  29. android:layout_height="wrap_content"
  30. android:layout_below="@id/zzz_question_time"
  31. android:layout_marginTop="@dimen/zzz_service_answer_layout_margin_top"
  32. android:background="@drawable/zzz_service_answer_layout_bg"
  33. android:paddingBottom="@dimen/zzz_service_answer_layout_padding_bottom"
  34. android:paddingLeft="@dimen/zzz_service_answer_layout_padding_left"
  35. android:paddingRight="@dimen/zzz_service_answer_layout_padding_right"
  36. android:paddingTop="@dimen/zzz_service_answer_layout_padding_top">
  37. <TextView
  38. android:id="@+id/zzz_service_answer_label"
  39. android:layout_width="wrap_content"
  40. android:layout_height="wrap_content"
  41. android:includeFontPadding="false"
  42. android:textColor="@color/zzz_service_answer_text"
  43. android:textSize="@dimen/zzz_service_answer_text_size"/>
  44. <TextView
  45. android:id="@+id/zzz_service_answer_content"
  46. android:layout_width="match_parent"
  47. android:layout_height="wrap_content"
  48. android:layout_below="@id/zzz_service_answer_label"
  49. android:layout_marginTop="@dimen/zzz_service_answer_content_margin_top"
  50. android:includeFontPadding="false"
  51. android:textColor="@color/zzz_service_answer_text"
  52. android:textSize="@dimen/zzz_service_answer_text_size"
  53. android:visibility="gone"/>
  54. <TextView
  55. android:id="@+id/zzz_service_answer_time"
  56. android:layout_width="wrap_content"
  57. android:layout_height="wrap_content"
  58. android:layout_alignParentRight="true"
  59. android:layout_below="@id/zzz_service_answer_content"
  60. android:includeFontPadding="false"
  61. android:layout_marginTop="@dimen/zzz_service_answer_time_margin_top"
  62. android:textColor="@color/zzz_service_answer_text"
  63. android:textSize="@dimen/zzz_my_feedback_time_text_size"
  64. android:visibility="gone"/>
  65. </RelativeLayout>
  66. </RelativeLayout>