common_toastview.xml 554 B

12345678910111213141516
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:padding="15dip"
  6. android:background="@drawable/toast_bg"
  7. android:orientation="horizontal" >
  8. <TextView
  9. android:id="@+id/txt_toast"
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content"
  12. android:textSize="18sp"
  13. android:textColor="@color/txt_general_bg"
  14. />
  15. </LinearLayout>