pandorapan/live/src/main/res/layout/popwindow_chat_withdraw.xml
2022-07-18 15:31:45 +08:00

26 lines
970 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<androidx.cardview.widget.CardView
android:id="@+id/cv_chat"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:cardBackgroundColor="@color/gray_ededed"
app:cardCornerRadius="5dp"
app:cardElevation="0dp">
<TextView
android:id="@+id/tv_withdraw"
android:layout_width="66dp"
android:layout_height="36dp"
android:gravity="center"
android:text="@string/withdraw"
android:textColor="@color/black2"
android:textSize="12sp"
android:textStyle="bold" />
</androidx.cardview.widget.CardView>
</LinearLayout>