25 lines
832 B
XML
25 lines
832 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
app:cardCornerRadius="5dp"
|
|
app:cardPreventCornerOverlap="true">
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/toast_tv"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:maxLines="1"
|
|
android:paddingStart="15dp"
|
|
android:paddingTop="5dp"
|
|
android:paddingEnd="15dp"
|
|
android:paddingBottom="5dp"
|
|
android:textColor="@color/black"
|
|
android:textSize="28sp" />
|
|
|
|
|
|
</androidx.cardview.widget.CardView> |