c_buoycircle_hide_guide_dialog.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. <TextView
  8. android:id="@+id/game_id_buoy_hide_guide_text"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:textSize="15sp"
  12. android:gravity="start"
  13. android:layout_marginStart="24dp"
  14. android:layout_marginEnd="24dp"
  15. android:layout_marginLeft="24dp"
  16. android:layout_marginRight="24dp"
  17. />
  18. <com.huawei.appmarket.component.buoycircle.impl.view.GifImageView
  19. android:id="@+id/game_id_buoy_hide_guide_gif"
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content"
  22. android:layout_below="@+id/game_id_buoy_hide_guide_text"
  23. android:src="@drawable/c_buoycircle_hide_guide"
  24. android:layout_marginStart="24dp"
  25. android:layout_marginEnd="24dp"
  26. android:layout_marginLeft="24dp"
  27. android:layout_marginRight="24dp"/>
  28. <LinearLayout
  29. android:id="@+id/game_id_buoy_hide_guide_checklayout"
  30. android:orientation="horizontal"
  31. android:layout_width="wrap_content"
  32. android:layout_height="wrap_content"
  33. android:layout_marginStart="12dp"
  34. android:layout_marginEnd="12dp"
  35. android:layout_marginLeft="12dp"
  36. android:layout_marginRight="12dp"
  37. android:layout_below="@+id/game_id_buoy_hide_guide_gif">
  38. <CheckBox
  39. android:id="@+id/game_id_buoy_hide_guide_remind"
  40. android:layout_width="wrap_content"
  41. android:layout_height="wrap_content"
  42. android:text="@string/c_buoycircle_hide_guide_noremind"
  43. android:textSize="13sp"/>
  44. </LinearLayout>
  45. </RelativeLayout>