toast.xml 760 B

123456789101112131415161718192021
  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. <LinearLayout
  6. android:layout_width="match_parent"
  7. android:orientation="horizontal"
  8. android:background="@android:color/darker_gray"
  9. android:gravity="center"
  10. android:padding="20dp"
  11. android:layout_height="match_parent">
  12. <TextView
  13. android:layout_width="wrap_content"
  14. android:id="@+id/tvToast"
  15. android:text="Toast"
  16. android:textSize="35sp"
  17. android:textColor="#fff"
  18. android:layout_height="wrap_content"/>
  19. </LinearLayout>
  20. </LinearLayout>