21 lines
715 B
XML
21 lines
715 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/bg_toast"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_message"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingStart="100dp"
|
|
android:paddingTop="9dp"
|
|
android:paddingRight="100dp"
|
|
android:paddingBottom="9dp"
|
|
android:text="Toast"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="20sp" />
|
|
</LinearLayout>
|