linphone-android/app/src/main/res/layout/toast.xml
2019-03-05 11:24:33 +01:00

17 lines
629 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toastRoot"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="?attr/backgroundContastColor"
android:orientation="vertical">
<TextView
android:id="@+id/toastMessage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="5dp"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="?attr/secondaryTextColor" />
</LinearLayout>