26 lines
927 B
XML
26 lines
927 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"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
app:cardCornerRadius="8dp"
|
|
app:cardBackgroundColor="#000000"
|
|
app:cardPreventCornerOverlap="true">
|
|
|
|
<TextView
|
|
android:id="@+id/toast_tv"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="10dp"
|
|
android:paddingBottom="10dp"
|
|
android:gravity="center_vertical"
|
|
android:paddingStart="20dp"
|
|
android:paddingEnd="20dp"
|
|
android:textColor="#ffffff"
|
|
android:textSize="36sp"
|
|
tools:text="TextView" />
|
|
|
|
|
|
</androidx.cardview.widget.CardView> |