You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
3.4 KiB
XML
93 lines
3.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.cardview.widget.CardView 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"
|
|
android:layout_marginStart="10dp"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginEnd="10dp"
|
|
android:layout_marginBottom="6dp"
|
|
app:cardBackgroundColor="@color/xui_config_color_white"
|
|
app:cardCornerRadius="8dp"
|
|
app:cardElevation="4dp"
|
|
app:cardPreventCornerOverlap="true"
|
|
app:contentPaddingBottom="10dp"
|
|
app:contentPaddingLeft="10dp"
|
|
app:contentPaddingRight="10dp"
|
|
app:contentPaddingTop="5dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:baselineAligned="false"
|
|
android:orientation="horizontal">
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:baselineAligned="false"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:minHeight="30dp">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_sbmc"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="5dp"
|
|
android:gravity="start|center"
|
|
android:textSize="15sp" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal"
|
|
android:gravity="start|center"
|
|
>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_jz"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="5dp"
|
|
android:textSize="15sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_qy"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="5dp"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_marginStart="50dp"
|
|
android:textSize="15sp" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="100dp"
|
|
android:layout_height="match_parent"
|
|
android:gravity="end"
|
|
android:minHeight="30dp">
|
|
<Button
|
|
android:id="@+id/btn_history_data"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="10dp"
|
|
android:paddingBottom="10dp"
|
|
android:paddingStart="5dp"
|
|
android:paddingEnd="5dp"
|
|
android:textSize="16sp"
|
|
android:layout_gravity="center_vertical"
|
|
android:background="@drawable/btn_selector"
|
|
android:textColor="@color/historyBtnTextColor"
|
|
android:text="@string/history_data"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
</androidx.cardview.widget.CardView>
|