pandorapan/live/src/main/res/layout/diy_toast_view.xml
18142669586 133e45bc63 111
2022-07-27 11:21:34 +08:00

57 lines
1.9 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="184dp"
android:layout_height="55dp"
android:background="@mipmap/black_tip_bg"
android:gravity="center"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/completing_mission"
android:layout_marginTop="3dp"
android:textColor="#fffff69f"
android:textSize="12sp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:gravity="center"
android:layout_marginBottom="5dp"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/get"
android:textColor="#ffffffff"
android:textSize="12sp" />
<TextView android:id="@+id/gold"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:drawableLeft="@mipmap/icon_live_beans"
android:text="10"
android:textColor="#ffffffff"
android:textSize="12sp" />
<TextView android:id="@+id/exp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableLeft="@mipmap/icon_live_exp"
android:text="100"
android:textColor="#ffffffff"
android:textSize="12sp"
/>
</LinearLayout>
</LinearLayout>