2019-02-14 00:58:03 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
2019-04-23 22:45:08 +08:00
|
|
|
android:id="@+id/llout"
|
2019-02-14 00:58:03 +08:00
|
|
|
>
|
|
|
|
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/top_layout"
|
|
|
|
android:layout_width="match_parent"
|
2019-05-04 23:17:28 +08:00
|
|
|
android:layout_height="120dp"
|
2019-02-14 00:58:03 +08:00
|
|
|
android:elevation="1dp"
|
|
|
|
tools:ignore="UnusedAttribute">
|
|
|
|
|
2019-05-04 23:17:28 +08:00
|
|
|
<LinearLayout
|
|
|
|
android:clickable="true"
|
|
|
|
android:id="@+id/llBookdetail"
|
2019-02-14 00:58:03 +08:00
|
|
|
android:layout_width="match_parent"
|
2019-05-04 23:17:28 +08:00
|
|
|
android:layout_height="100dp"
|
2019-02-14 00:58:03 +08:00
|
|
|
android:background="@color/white"
|
|
|
|
android:layout_alignParentBottom="true"
|
2019-05-04 23:17:28 +08:00
|
|
|
android:paddingStart="100dp"
|
2019-02-14 00:58:03 +08:00
|
|
|
android:paddingLeft="120dp"
|
2019-05-04 23:17:28 +08:00
|
|
|
android:orientation="horizontal"
|
2019-02-14 00:58:03 +08:00
|
|
|
>
|
|
|
|
|
|
|
|
<LinearLayout
|
2019-05-04 23:17:28 +08:00
|
|
|
android:layout_width="match_parent"
|
2019-02-14 00:58:03 +08:00
|
|
|
android:layout_height="wrap_content"
|
2019-05-03 00:30:48 +08:00
|
|
|
android:layout_gravity="center_vertical"
|
2019-05-04 23:17:28 +08:00
|
|
|
android:paddingStart="15dp"
|
|
|
|
android:paddingRight="10dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="@drawable/item_selector"
|
2019-02-14 00:58:03 +08:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/bdTitle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="射雕英雄传"
|
|
|
|
android:textColor="@color/colorPrimary"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:textStyle="bold"
|
2019-05-04 23:17:28 +08:00
|
|
|
android:ellipsize="marquee"
|
2019-02-14 00:58:03 +08:00
|
|
|
tools:ignore="HardcodedText,TextViewEdits" />
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
2019-05-03 00:30:48 +08:00
|
|
|
android:id="@+id/tvAuthor"
|
2019-02-14 00:58:03 +08:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="visible"
|
|
|
|
android:text="金庸"
|
|
|
|
tools:ignore="HardcodedText" />
|
|
|
|
|
2019-05-04 23:17:28 +08:00
|
|
|
<TextView
|
|
|
|
android:layout_marginTop="2dp"
|
|
|
|
android:id="@+id/txtLatestCate"
|
|
|
|
style="@style/TextViewDesc"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:lines="1"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:text=""
|
|
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtLatestUpdate"
|
|
|
|
style="@style/TextViewDesc.small"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:lines="1"
|
|
|
|
android:text=""
|
|
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
2019-02-14 00:58:03 +08:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
2019-05-04 23:17:28 +08:00
|
|
|
</LinearLayout>
|
2019-02-14 00:58:03 +08:00
|
|
|
|
|
|
|
<android.support.v7.widget.CardView
|
|
|
|
android:id="@+id/cardView"
|
2019-05-03 00:30:48 +08:00
|
|
|
android:layout_width="80dp"
|
2019-05-04 23:17:28 +08:00
|
|
|
android:layout_height="130dp"
|
2019-02-14 00:58:03 +08:00
|
|
|
android:layout_marginEnd="14dp"
|
|
|
|
android:layout_marginRight="14dp"
|
|
|
|
android:layout_marginStart="20dp"
|
|
|
|
android:layout_marginLeft="20dp"
|
|
|
|
android:layout_marginBottom="5dp"
|
|
|
|
app:cardBackgroundColor="@color/white"
|
|
|
|
app:cardCornerRadius="6dp"
|
|
|
|
app:cardElevation="2dp">
|
|
|
|
|
|
|
|
<ImageView
|
2019-05-03 00:30:48 +08:00
|
|
|
android:id="@+id/imageG1"
|
2019-02-14 00:58:03 +08:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
android:src="@drawable/googleg_standard_color_18"
|
|
|
|
tools:ignore="ContentDescription" />
|
|
|
|
|
|
|
|
</android.support.v7.widget.CardView>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="match_parent"
|
2019-05-04 23:17:28 +08:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="bottom"
|
2019-02-14 00:58:03 +08:00
|
|
|
android:background="@color/white"
|
2019-05-04 23:17:28 +08:00
|
|
|
android:padding="10dp"
|
|
|
|
android:paddingBottom="5dp"
|
2019-02-14 00:58:03 +08:00
|
|
|
>
|
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="60dp"
|
2019-05-04 23:17:28 +08:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/llClearCache"
|
|
|
|
android:gravity="bottom"
|
2019-02-14 00:58:03 +08:00
|
|
|
android:background="@drawable/item_selector"
|
|
|
|
android:clickable="true"
|
2019-05-04 23:17:28 +08:00
|
|
|
>
|
2019-02-14 00:58:03 +08:00
|
|
|
<TextView
|
2019-05-04 23:17:28 +08:00
|
|
|
android:id="@+id/tvCache"
|
2019-02-14 00:58:03 +08:00
|
|
|
android:layout_width="wrap_content"
|
2019-05-04 23:17:28 +08:00
|
|
|
android:layout_height="20dp"
|
2019-02-14 00:58:03 +08:00
|
|
|
|
2019-05-04 23:17:28 +08:00
|
|
|
android:layout_gravity="center"
|
|
|
|
android:text=""
|
2019-02-14 00:58:03 +08:00
|
|
|
|
|
|
|
android:textColor="#212121" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
2019-05-04 23:17:28 +08:00
|
|
|
android:layout_height="20dp"
|
2019-02-14 00:58:03 +08:00
|
|
|
|
2019-05-04 23:17:28 +08:00
|
|
|
android:layout_gravity="center"
|
|
|
|
android:text="清除缓存"
|
2019-02-14 00:58:03 +08:00
|
|
|
|
|
|
|
android:textColor="#212121" />
|
|
|
|
|
|
|
|
</LinearLayout>.
|
2019-05-04 23:17:28 +08:00
|
|
|
|
2019-02-14 00:58:03 +08:00
|
|
|
<LinearLayout
|
2019-05-04 23:17:28 +08:00
|
|
|
android:id="@+id/llTop"
|
2019-02-14 00:58:03 +08:00
|
|
|
android:orientation="vertical"
|
2019-05-04 23:17:28 +08:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="bottom|center_horizontal"
|
2019-02-14 00:58:03 +08:00
|
|
|
|
|
|
|
android:background="@drawable/item_selector"
|
|
|
|
android:clickable="true"
|
2019-05-04 23:17:28 +08:00
|
|
|
android:layout_marginStart="5dp"
|
|
|
|
android:layout_marginEnd="5dp"
|
|
|
|
>
|
2019-02-14 00:58:03 +08:00
|
|
|
<ImageView
|
2019-05-04 23:17:28 +08:00
|
|
|
android:id="@+id/imageTop"
|
|
|
|
android:layout_width="30dp"
|
|
|
|
android:layout_height="30dp"
|
2019-02-14 00:58:03 +08:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center"
|
2019-05-04 23:17:28 +08:00
|
|
|
android:src="@mipmap/star_active" />
|
2019-02-14 00:58:03 +08:00
|
|
|
|
|
|
|
<TextView
|
2019-05-04 23:17:28 +08:00
|
|
|
android:id="@+id/tvTop"
|
2019-02-14 00:58:03 +08:00
|
|
|
android:layout_width="wrap_content"
|
2019-05-04 23:17:28 +08:00
|
|
|
android:layout_height="20dp"
|
2019-02-14 00:58:03 +08:00
|
|
|
android:gravity="center"
|
2019-05-04 23:17:28 +08:00
|
|
|
android:text="置顶显示"
|
2019-02-14 00:58:03 +08:00
|
|
|
|
|
|
|
android:textColor="#212121" />
|
|
|
|
|
|
|
|
</LinearLayout>.
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|