snackbar.xml 948 B

123456789101112131415161718192021222324252627
  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="wrap_content"
  5. android:background="@android:drawable/dialog_holo_dark_frame"
  6. android:gravity="center_vertical"
  7. android:orientation="horizontal">
  8. <TextView
  9. android:id="@+id/snackbar_text"
  10. android:layout_width="0dp"
  11. android:layout_height="wrap_content"
  12. android:layout_weight="1"
  13. android:text=""
  14. android:textColor="@android:color/white"
  15. android:textSize="14sp"
  16. android:padding="8dp"/>
  17. <Button
  18. android:id="@+id/snackbar_action"
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:background="#00FFFFFF"
  22. android:text="Action"
  23. android:textColor="#61B7FC"
  24. android:paddingHorizontal="8dp"/>
  25. </LinearLayout>