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

20 lines
787 B
XML
Raw Normal View History

2022-01-29 18:57:19 +00:00
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toast_layout_root"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="5dp"
app:cardCornerRadius="10dp"
2021-10-31 14:14:01 +00:00
app:cardBackgroundColor="?attr/primaryBlackBackground"
2021-09-19 20:33:39 +00:00
android:background="?attr/primaryBlackBackground">
<TextView
android:padding="20dp"
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="match_parent"
2022-01-29 18:57:19 +00:00
android:textColor="?attr/textColor" />
</androidx.cardview.widget.CardView>