119 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			119 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			XML
		
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 | |
|     android:layout_width="match_parent"
 | |
|     android:layout_height="wrap_content"
 | |
|     android:layout_marginBottom="0dp"
 | |
|     android:layout_weight="1"
 | |
|     android:background="@drawable/item_selector"
 | |
|     android:clickable="true"
 | |
|     android:gravity="center"
 | |
|     android:orientation="vertical"
 | |
| 
 | |
| 
 | |
| 
 | |
|     >
 | |
| 
 | |
| 
 | |
|     <LinearLayout
 | |
|         android:layout_width="match_parent"
 | |
|         android:layout_height="wrap_content"
 | |
|         android:orientation="horizontal">
 | |
| 
 | |
|         <ImageView
 | |
|             android:id="@+id/imageView"
 | |
|             style="@style/NovelImage.horizon"
 | |
|             android:src="@drawable/googleg_standard_color_18" />
 | |
| 
 | |
|         <LinearLayout
 | |
|             android:layout_width="0dp"
 | |
|             android:layout_height="match_parent"
 | |
|             android:layout_weight="1"
 | |
|             android:gravity="top"
 | |
|             android:orientation="vertical"
 | |
| 
 | |
|             >
 | |
| 
 | |
|             <TextView
 | |
|                 android:id="@+id/title"
 | |
|                 style="@style/TextViewNovelTitle.horizon"
 | |
| 
 | |
|                 android:text="ddd " />
 | |
| 
 | |
|             <LinearLayout
 | |
|                 android:layout_width="match_parent"
 | |
|                 android:layout_height="wrap_content"
 | |
|                 android:layout_marginStart="0dp"
 | |
| 
 | |
|                 android:orientation="horizontal">
 | |
| 
 | |
|                 <TextView
 | |
|                     android:id="@+id/category"
 | |
|                     style="@style/TextViewNovelType"
 | |
|                     android:text="  " />
 | |
| 
 | |
|                 <TextView
 | |
|                     android:id="@+id/tvNovelStatus"
 | |
|                     style="@style/TextViewNovelType.Status"
 | |
|                     android:layout_marginLeft="10dp"
 | |
|                     android:text=" "
 | |
| 
 | |
|                     />
 | |
| 
 | |
|                 <TextView
 | |
|                     android:id="@+id/author"
 | |
|                     style="@style/TextViewNovelAuthor"
 | |
|                     android:text="  " />
 | |
|             </LinearLayout>
 | |
| 
 | |
|             <LinearLayout
 | |
|                 android:layout_width="match_parent"
 | |
|                 android:layout_height="wrap_content"
 | |
|                 android:layout_marginLeft="0dp"
 | |
|                 android:layout_marginTop="2dp"
 | |
|                 android:orientation="horizontal">
 | |
| 
 | |
|                 <TextView
 | |
|                     android:id="@+id/tvLastRead"
 | |
|                     style="@style/TextViewNovelType"
 | |
|                     android:layout_marginStart="10dp"
 | |
|                     android:text="  "
 | |
|                     android:textColor="@color/common_google_signin_btn_text_light" />
 | |
|             </LinearLayout>
 | |
|             <LinearLayout
 | |
|                 android:layout_width="match_parent"
 | |
|                 android:layout_height="wrap_content"
 | |
|                 android:layout_marginLeft="0dp"
 | |
|                 android:layout_marginTop="4dp"
 | |
|                 android:orientation="horizontal">
 | |
| 
 | |
|                 <TextView
 | |
|                     android:id="@+id/tvProgress"
 | |
|                     style="@style/TextViewNovelType"
 | |
|                     android:text="   "
 | |
|                     android:textColor="@color/common_google_signin_btn_text_light" />
 | |
| 
 | |
|             </LinearLayout>
 | |
| 
 | |
|             <LinearLayout
 | |
|                 android:layout_width="match_parent"
 | |
|                 android:layout_height="wrap_content"
 | |
|                 android:layout_marginLeft="0dp"
 | |
|                 android:layout_marginTop="2dp"
 | |
|                 android:orientation="horizontal">
 | |
| 
 | |
|                 <TextView
 | |
|                     android:id="@+id/tvReadtime"
 | |
| 
 | |
|                     style="@style/TextViewNovelType"
 | |
|                     android:layout_marginLeft="10dp"
 | |
|                     android:text="  "
 | |
|                     android:textColor="@color/common_google_signin_btn_text_light" />
 | |
|             </LinearLayout>
 | |
| 
 | |
| 
 | |
| 
 | |
|         </LinearLayout>
 | |
| 
 | |
|     </LinearLayout>
 | |
|     <LinearLayout style="@style/llGraySplit.2dp.gray" />
 | |
| </LinearLayout> |