pandorapan/live/src/main/res/layout/diy_toast_view.xml

57 lines
1.9 KiB
XML
Raw Normal View History

2022-07-26 17:45:20 +08:00
<?xml version="1.0" encoding="utf-8"?>
2022-07-27 11:21:34 +08:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2022-07-26 17:45:20 +08:00
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">
2022-07-27 11:21:34 +08:00
2022-07-26 17:45:20 +08:00
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2022-07-27 11:21:34 +08:00
android:text="@string/completing_mission"
android:layout_marginTop="3dp"
2022-07-26 17:45:20 +08:00
android:textColor="#fffff69f"
2022-07-27 11:21:34 +08:00
android:textSize="12sp" />
2022-07-26 17:45:20 +08:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
2022-07-27 11:21:34 +08:00
android:layout_marginTop="5dp"
2022-07-26 17:45:20 +08:00
android:gravity="center"
2022-07-27 11:21:34 +08:00
android:layout_marginBottom="5dp"
2022-07-26 17:45:20 +08:00
android:orientation="horizontal">
2022-07-27 11:21:34 +08:00
2022-07-26 17:45:20 +08:00
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2022-07-27 11:21:34 +08:00
android:text="@string/get"
2022-07-26 17:45:20 +08:00
android:textColor="#ffffffff"
2022-07-27 11:21:34 +08:00
android:textSize="12sp" />
2022-07-26 17:45:20 +08:00
2022-07-27 11:21:34 +08:00
<TextView android:id="@+id/gold"
2022-07-26 17:45:20 +08:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2022-07-27 11:21:34 +08:00
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:drawableLeft="@mipmap/icon_live_beans"
2022-07-26 17:45:20 +08:00
android:text="10"
android:textColor="#ffffffff"
2022-07-27 11:21:34 +08:00
android:textSize="12sp" />
2022-07-26 17:45:20 +08:00
2022-07-27 11:21:34 +08:00
<TextView android:id="@+id/exp"
2022-07-26 17:45:20 +08:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2022-07-27 11:21:34 +08:00
android:drawableLeft="@mipmap/icon_live_exp"
2022-07-26 17:45:20 +08:00
android:text="100"
android:textColor="#ffffffff"
android:textSize="12sp"
/>
</LinearLayout>
</LinearLayout>