Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="UTF-8"?>
      2 <!-- Thanks to http://hustleplay.wordpress.com/2009/07/23/replicating-default-android-toast/ ! -->
      3 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      4 android:id="@+id/toast_layout_root"
      5 android:orientation="horizontal"
      6 android:layout_width="fill_parent"
      7 android:layout_height="fill_parent"
      8 android:padding="10dp"
      9 android:background="@drawable/custom_toast_border"
     10 >
     11 <TextView android:id="@+id/text"
     12 android:layout_width="wrap_content"
     13 android:layout_height="fill_parent"
     14 android:textColor="#65ff99"
     15 android:textSize="30sp"
     16 android:textStyle="bold"
     17 android:gravity="center"
     18 />
     19 </LinearLayout>