hms_game_achievement_finish.xml 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/achievemnet_notice_view"
  4. android:layout_width="wrap_content"
  5. android:layout_height="36dp"
  6. android:orientation="horizontal"
  7. android:background="@drawable/hms_game_achievement_bg_shape">
  8. <ImageView
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:layout_marginLeft="8dp"
  12. android:layout_marginStart="8dp"
  13. android:layout_marginRight="16dp"
  14. android:layout_marginEnd="16dp"
  15. android:layout_gravity="center"
  16. android:src="@drawable/hms_game_achievement_finish"/>
  17. <TextView
  18. android:id="@+id/achievement_finish_text"
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:layout_marginEnd="16dp"
  22. android:layout_marginRight="16dp"
  23. android:layout_gravity="center"
  24. android:textColor="#ffffff"
  25. android:textSize="16sp"
  26. android:fontFamily="textFontFamilyRegular"
  27. android:text="@string/hms_game_achievement_finish_notice"/>
  28. </LinearLayout>