mytoast_view.xml 772 Bytes
<?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:id="@+id/toast_layout"
    android:orientation="vertical" >

    <View 
        android:layout_width="match_parent"
        android:layout_height="48dp"
        />
    <TextView
        android:id="@+id/toast_tv"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:background="#ffffff"
        android:textColor="#000000"
        android:alpha="0.9"
        android:textSize="@dimen/all_title_size"
         />
       <!--  android:background="@color/title_bg" -->
</LinearLayout>