1234567891011121314151617181920212223242526272829303132333435 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:gravity="center"
- >
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="33dp"
- android:background="@drawable/hnyy_radius_white_1dp"
- android:orientation="horizontal">
- <ImageView
- android:id="@+id/toast_iv"
- android:layout_width="22dp"
- android:layout_height="22dp"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="10dp" />
- <TextView
- android:id="@+id/toast_text"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:gravity="center"
- android:maxLines="1"
- android:textColor="#666666"
- android:textSize="15dp" />
- </LinearLayout>
- </LinearLayout>
|