2021-08-24 22:19:15 +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-09-19 20:33:39 +00:00
|
|
|
android:background="?attr/primaryBlackBackground">
|
2021-08-24 22:19:15 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:padding="20dp"
|
|
|
|
android:id="@+id/text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:textColor="?attr/textColor"/>
|
|
|
|
|
|
|
|
</androidx.cardview.widget.CardView>
|