<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout 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="wrap_content">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="36dp"
|
android:layout_marginHorizontal="15dp"
|
android:layout_marginTop="10dp"
|
android:background="@drawable/bg_green_top_10"
|
app:layout_constraintTop_toTopOf="parent">
|
|
<TextView
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="2"
|
android:gravity="center"
|
android:text="排名"
|
android:textColor="@color/white"
|
android:textSize="12sp"
|
android:textStyle="bold" />
|
|
<TextView
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="3"
|
android:gravity="center"
|
android:text="姓名"
|
android:textColor="@color/white"
|
android:textSize="12sp"
|
android:textStyle="bold" />
|
|
<TextView
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="4"
|
android:gravity="center"
|
android:text="时间"
|
android:textColor="@color/white"
|
android:textSize="12sp"
|
android:textStyle="bold" />
|
|
<TextView
|
android:id="@+id/tv_rank_type"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="3"
|
android:gravity="center"
|
android:text="单量"
|
android:textColor="@color/white"
|
android:textSize="12sp"
|
android:textStyle="bold" />
|
</LinearLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|