<?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:layout_width="90dp"
|
android:layout_height="90dp"
|
android:orientation="vertical"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
android:layout_marginTop="16dp"
|
android:background="@drawable/bg_orange_45dp"
|
android:elevation="2dp">
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="积分"
|
android:textSize="12sp"
|
android:textColor="@color/white"
|
android:layout_gravity="center"
|
android:layout_marginTop="18dp"/>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center"
|
android:text="0"
|
android:textSize="16sp"
|
android:textColor="@color/white"
|
android:layout_marginTop="8dp"
|
android:id="@+id/tv_score"
|
android:textStyle="bold"/>
|
</LinearLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|