FairEmail/app/src/main/res/layout/toast.xml

20 lines
758 B
XML
Raw Normal View History

2019-07-13 06:58:56 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/toast_background"
android:orientation="vertical"
2019-07-13 07:39:21 +00:00
android:paddingStart="12dp"
android:paddingTop="6dp"
android:paddingEnd="12dp"
android:paddingBottom="6dp">
2019-07-13 06:58:56 +00:00
<TextView
android:id="@android:id/message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Message"
2019-07-13 07:39:21 +00:00
android:textAppearance="@style/TextAppearance.AppCompat.Small"
2019-07-13 19:12:09 +00:00
android:textColor="@color/colorToastForeground" />
2019-07-13 06:58:56 +00:00
</LinearLayout>