2019-06-03 23:25:05 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/custom_toast_container"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:padding="15dp"
|
2022-03-18 09:56:49 +01:00
|
|
|
android:background="@drawable/shape_full_circle"
|
2020-08-04 22:50:04 +02:00
|
|
|
android:backgroundTint="@color/warningColor">
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
<TextView android:id="@+id/toastText"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-08-04 22:50:04 +02:00
|
|
|
android:textColor="@color/colorPrimary"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_gravity="center"
|
|
|
|
android:gravity="center" />
|
|
|
|
|
2020-07-12 19:18:50 +02:00
|
|
|
</LinearLayout>
|