12345678910111213141516171819202122232425262728293031323334353637 |
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/mbContainer"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginBottom="60dp"
- android:gravity="bottom|center"
- android:orientation="vertical"
- android:paddingLeft="50dp"
- android:paddingRight="50dp">
-
- <LinearLayout android:id="@+id/toast_linear"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:layout_marginBottom="50dp"
- android:padding="8dp">
-
- <TextView android:id="@+id/mbMessage"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_margin="5dp"
- android:paddingTop="12dp"
- android:paddingBottom="12dp"
- android:paddingLeft="20dp"
- android:paddingRight="20dp"
- android:layout_weight="1"
- android:gravity="center"
- android:alpha="0.5"
- android:background="@drawable/com_lenovo_shape_toast_bg"
- android:shadowColor="#BB000000"
- android:shadowRadius="2.75"
- android:textSize="13sp"
- android:textColor="#ffffff" />
- </LinearLayout>
- </LinearLayout>
|