111 lines
3.5 KiB
XML
111 lines
3.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="80dp"
|
|
android:gravity="center"
|
|
android:background="@drawable/item_selector"
|
|
android:clickable="true"
|
|
android:paddingStart="10dp"
|
|
android:layout_weight="1">
|
|
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
|
|
android:layout_weight="1">
|
|
<LinearLayout
|
|
android:layout_marginTop="5dp"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:paddingRight="10dp"
|
|
android:layout_height="wrap_content">
|
|
<TextView
|
|
android:id="@+id/tvTitle"
|
|
style="@style/TextViewNovelTitle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="20dp"
|
|
android:layout_gravity="left"
|
|
android:text="射雕英雄传"
|
|
android:layout_weight="1"
|
|
android:textColor="@color/blacktitle" />
|
|
<TextView
|
|
android:id="@+id/tvStatus"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="right"
|
|
android:textSize="12sp"
|
|
android:text="未知"
|
|
android:textColor="@color/grey" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_marginTop="5dp"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingRight="10dp"
|
|
>
|
|
<TextView
|
|
android:id="@+id/tvSource"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="-/-"
|
|
android:layout_weight="1"
|
|
android:textSize="12sp"
|
|
android:textColor="@color/blacktitle" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvProgress"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="20dp"
|
|
android:textSize="12sp"
|
|
android:gravity="right"
|
|
android:layout_marginStart="0dp"
|
|
android:text="未知"
|
|
android:layout_weight="0"
|
|
android:textColor="@color/grey" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvSize"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="20dp"
|
|
android:textSize="12sp"
|
|
android:gravity="right"
|
|
android:layout_marginStart="0dp"
|
|
android:text="未知"
|
|
android:layout_weight="1"
|
|
android:textColor="@color/grey" />
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
<ProgressBar android:id="@+id/barProgress"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="8dp"
|
|
android:max="100"
|
|
android:paddingTop="5dp"
|
|
style="@android:style/Widget.ProgressBar.Horizontal"
|
|
|
|
/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
<ImageView
|
|
android:clickable="true"
|
|
android:id="@+id/imgStart"
|
|
android:layout_width="25dp"
|
|
android:layout_height="25dp"
|
|
android:layout_margin="15dp"
|
|
android:src="@mipmap/play"
|
|
/>
|
|
|
|
</LinearLayout>
|