c_buoycircle_hide_guide_dialog.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:layout_width="match_parent"
  5. android:layout_height="wrap_content"
  6. android:paddingTop="8dp">
  7. <ScrollView
  8. android:layout_height="wrap_content"
  9. android:layout_width="wrap_content"
  10. android:layout_above="@+id/game_id_buoy_hide_guide_checklayout">
  11. <LinearLayout
  12. android:layout_height="wrap_content"
  13. android:layout_width="wrap_content"
  14. android:orientation="vertical"
  15. android:layout_marginStart="24dp"
  16. android:layout_marginEnd="24dp"
  17. android:layout_marginLeft="24dp"
  18. android:layout_marginRight="24dp">
  19. <TextView
  20. android:id="@+id/game_id_buoy_hide_guide_text"
  21. android:layout_width="match_parent"
  22. android:layout_height="wrap_content"
  23. android:textSize="15sp"
  24. android:gravity="start"
  25. />
  26. <com.huawei.appmarket.component.buoycircle.impl.view.GifImageView
  27. android:id="@+id/game_id_buoy_hide_guide_gif"
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"
  30. android:src="@drawable/c_buoycircle_hide_guide"/>
  31. </LinearLayout>
  32. </ScrollView>
  33. <LinearLayout
  34. android:id="@+id/game_id_buoy_hide_guide_checklayout"
  35. android:orientation="horizontal"
  36. android:layout_width="wrap_content"
  37. android:layout_height="wrap_content"
  38. android:layout_marginStart="12dp"
  39. android:layout_marginEnd="12dp"
  40. android:layout_marginLeft="12dp"
  41. android:layout_marginRight="12dp"
  42. android:layout_alignParentBottom="true">
  43. <CheckBox
  44. android:id="@+id/game_id_buoy_hide_guide_remind"
  45. android:layout_width="wrap_content"
  46. android:layout_height="wrap_content"
  47. android:text="@string/c_buoycircle_hide_guide_noremind"
  48. android:textSize="13sp"/>
  49. </LinearLayout>
  50. </RelativeLayout>