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

53 lines
1.6 KiB
XML
Raw Normal View History

2022-07-26 17:45:20 +08:00
<?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="completing mission 1!"
android:textColor="#fffff69f"
android:textSize="12sp"
/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="GET"
android:textColor="#ffffffff"
android:textSize="12sp"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="10"
android:textColor="#ffffffff"
android:drawableLeft="@mipmap/icon_live_beans"
android:textSize="12sp"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="100"
android:textColor="#ffffffff"
android:textSize="12sp"
android:drawableLeft="@mipmap/icon_live_exp"
/>
</LinearLayout>
</LinearLayout>