12345678910111213141516171819202122232425262728293031 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/achievemnet_notice_view"
- android:layout_width="wrap_content"
- android:layout_height="36dp"
- android:orientation="horizontal"
- android:background="@drawable/hms_game_achievement_bg_shape">
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="8dp"
- android:layout_marginStart="8dp"
- android:layout_marginRight="16dp"
- android:layout_marginEnd="16dp"
- android:layout_gravity="center"
- android:src="@drawable/hms_game_achievement_finish"/>
- <TextView
- android:id="@+id/achievement_finish_text"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginEnd="16dp"
- android:layout_marginRight="16dp"
- android:layout_gravity="center"
- android:textColor="#ffffff"
- android:textSize="16sp"
- android:fontFamily="textFontFamilyRegular"
- android:text="@string/hms_game_achievement_finish_notice"/>
- </LinearLayout>
|