zzz_welfare_guide_dialog.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/zzz_welfare_guide"
  4. android:layout_width="@dimen/zzz_activity_width"
  5. android:layout_height="@dimen/zzz_activity_height"
  6. android:orientation="vertical">
  7. <include
  8. android:id="@+id/zzz_title"
  9. layout="@layout/zzz_common_title_layout" />
  10. <RelativeLayout
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent"
  13. android:background="@drawable/zzz_dialog_content_shape">
  14. <RelativeLayout
  15. android:id="@+id/zzz_welfare_guide_content"
  16. android:layout_width="match_parent"
  17. android:layout_height="match_parent"
  18. android:layout_above="@+id/zzz_not_notice_content"
  19. android:background="@drawable/zzz_dialog_content_shape" />
  20. <RelativeLayout
  21. android:id="@+id/zzz_not_notice_content"
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:layout_alignParentBottom="true"
  25. android:layout_margin="@dimen/zzz_not_notice_content_margin"
  26. android:padding="@dimen/zzz_one_dip">
  27. <CheckBox
  28. android:id="@+id/zzz_welfare_not_notice"
  29. android:layout_width="wrap_content"
  30. android:layout_height="wrap_content"
  31. android:button="@drawable/zzz_welfare_not_notice"
  32. android:paddingLeft="@dimen/zzz_not_notice_text_padding"
  33. android:text="@string/zzz_not_notice_in_one_day"
  34. android:textColor="@color/zzz_welfare_guide_item_content_text_color"
  35. android:textSize="@dimen/zzz_welfare_not_notice_text_size" />
  36. </RelativeLayout>
  37. </RelativeLayout>
  38. </LinearLayout>