123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <?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="309dp"
- android:layout_height="260dp"
- android:layout_gravity="center"
- android:paddingLeft="10dp"
- android:paddingRight="10dp">
- <ImageView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/model_view_d_item_btn_bt"></ImageView>
- <ImageView
- android:id="@+id/adapter_item_cusview_model_view_d_icon"
- android:layout_width="258dp"
- android:layout_height="145dp"
- android:layout_marginTop="10dp"
- android:background="@color/red"
- android:scaleType="fitXY"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent"></ImageView>
- <TextView
- android:id="@+id/adapter_item_cusview_model_view_d_name"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="12dp"
- android:text="春夏秋冬"
- android:textColor="#314051"
- android:textSize="18dp"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintHorizontal_bias="0.0"
- app:layout_constraintStart_toStartOf="@+id/adapter_item_cusview_model_view_d_icon"
- app:layout_constraintTop_toBottomOf="@+id/adapter_item_cusview_model_view_d_icon"></TextView>
- <LinearLayout
- android:id="@+id/linearLayout2"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="12dp"
- android:orientation="horizontal"
- app:layout_constraintEnd_toEndOf="@+id/adapter_item_cusview_model_view_d_icon"
- app:layout_constraintHorizontal_bias="1.0"
- app:layout_constraintStart_toStartOf="@+id/adapter_item_cusview_model_view_d_icon"
- app:layout_constraintTop_toBottomOf="@+id/adapter_item_cusview_model_view_d_icon">
- <TextView
- android:id="@+id/adapter_item_cusview_model_view_d_contestant"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="123123123"
- android:textColor="#77CE6A"
- android:textSize="18dp"></TextView>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="参与"
- android:textColor="#999999"
- android:textSize="18dp"></TextView>
- </LinearLayout>
- <com.edufound.reader.cusview.RoundFrameLayout
- android:id="@+id/adapter_item_cusview_model_view_d_ranklist"
- android:layout_width="96dp"
- android:layout_height="25dp"
- android:background="#6BADFF"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintHorizontal_bias="0.1"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toBottomOf="@+id/linearLayout2"
- app:layout_constraintVertical_bias="0.26999998"
- app:radio="10">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center"
- android:text="查看排行榜"
- android:textColor="#FFFFFF"
- android:textSize="12dp"></TextView>
- </com.edufound.reader.cusview.RoundFrameLayout>
- <com.edufound.reader.cusview.RoundFrameLayout
- android:id="@+id/adapter_item_cusview_model_view_d_enter"
- android:layout_width="96dp"
- android:layout_height="25dp"
- android:background="#32C965"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintHorizontal_bias="0.9"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toBottomOf="@+id/linearLayout2"
- app:layout_constraintVertical_bias="0.29000002"
- app:radio="10">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center"
- android:text="立即参赛"
- android:textColor="#FFFFFF"
- android:textSize="12dp"></TextView>
- </com.edufound.reader.cusview.RoundFrameLayout>
- </androidx.constraintlayout.widget.ConstraintLayout>
|