<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
<LinearLayout
|
android:id="@+id/ll_bg"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
app:layout_constraintTop_toTopOf="parent"
|
android:layout_marginTop="17dp"
|
android:gravity="center"
|
android:background="@drawable/bg_recharge_uncheck"
|
android:layout_marginHorizontal="9dp">
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:id="@+id/tv_coin"
|
android:text="200币"
|
android:textSize="15sp"
|
android:textStyle="bold"
|
android:textColor="@color/textColor66"
|
android:layout_marginTop="6dp"/>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:id="@+id/tv_price"
|
android:text="200币"
|
android:layout_marginBottom="5dp"
|
android:textSize="12sp"
|
android:textStyle="bold"
|
android:textColor="@color/textColor66"
|
android:layout_marginTop="3dp"/>
|
|
</LinearLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|