25 lines
906 B
XML
25 lines
906 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="130sp"
|
|
android:layout_height="40sp"
|
|
android:paddingTop="15dp"
|
|
android:paddingBottom="15dp"
|
|
android:paddingLeft="20dp"
|
|
android:paddingRight="20dp"
|
|
android:background="@drawable/bg_toast"
|
|
android:gravity="center">
|
|
|
|
<!-- <ImageView android:id="@+id/ivIcon" android:layout_width="wrap_content" android:layout_height="wrap_content"
|
|
android:layout_centerHorizontal="true" android:visibility="gone"/> -->
|
|
|
|
<TextView android:id="@+id/tvMsg"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="15sp"
|
|
android:gravity="center"
|
|
android:layout_centerHorizontal="true"
|
|
/>
|
|
|
|
</RelativeLayout>
|