123456789101112131415161718192021222324252627282930313233 |
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/DIMEN_150DP"
- android:gravity="center_horizontal"
- android:orientation="vertical"
- android:padding="@dimen/DIMEN_20DP">
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="@drawable/bssdk_toast_custom_bg"
- android:gravity="center"
- android:orientation="vertical"
- android:paddingLeft="@dimen/DIMEN_10DP"
- android:paddingRight="@dimen/DIMEN_10DP">
- <TextView
- android:id="@+id/tv_toast_custom"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="@dimen/DIMEN_25DP"
- android:layout_marginTop="@dimen/DIMEN_12DP"
- android:layout_marginRight="@dimen/DIMEN_25DP"
- android:layout_marginBottom="@dimen/DIMEN_12DP"
- android:textColor="@color/white"
- android:textSize="@dimen/TEXT_SIZE_12SP"
- tools:text="asdfasdfasdf" />
- </LinearLayout>
- </LinearLayout>
|