2020-05-04 10:49:19 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@drawable/toast_border_ok">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@android:id/icon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginLeft="6dp"
|
|
|
|
android:layout_marginTop="6dp"
|
|
|
|
android:layout_marginBottom="6dp"
|
|
|
|
android:src="@drawable/ic_toast_check"
|
|
|
|
tools:ignore="RtlHardcoded" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@android:id/message"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginLeft="6dp"
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
android:layout_marginRight="18dp"
|
|
|
|
android:layout_marginBottom="4dp"
|
|
|
|
android:text="Toast goes here..."
|
|
|
|
android:textColor="@color/toastBase"
|
|
|
|
android:textSize="18sp"
|
|
|
|
tools:ignore="HardcodedText,RtlHardcoded" />
|
2020-02-11 19:34:56 +01:00
|
|
|
</LinearLayout>
|