85 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			85 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			XML
		
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 | |
|     android:orientation="vertical"
 | |
|     android:layout_width="match_parent"
 | |
|     android:layout_height="wrap_content"
 | |
|     android:gravity="center"
 | |
|     android:background="@drawable/item_selector"
 | |
|     android:clickable="true"
 | |
|     android:layout_weight="1"
 | |
|     android:layout_marginTop="3dp"
 | |
|     android:padding="2dp">
 | |
|     <FrameLayout
 | |
|     android:layout_width="wrap_content"
 | |
|     android:layout_height="wrap_content"
 | |
| 
 | |
|         >
 | |
| 
 | |
|         <ImageView
 | |
|         android:id="@+id/imageView"
 | |
|         style="@style/NovelImage"
 | |
| 
 | |
|         android:src="@drawable/blankcover" />
 | |
|         <ImageView
 | |
|             android:id="@+id/imageUpdated"
 | |
|              android:layout_width="35dp"
 | |
|             android:layout_height="35dp"
 | |
|             android:layout_gravity="end"
 | |
|             android:layout_marginTop="2dp"
 | |
|             android:layout_marginRight="0dp"
 | |
|             android:visibility="gone"
 | |
|             android:src="@drawable/ic_book_update_flag" />
 | |
|         <ImageView
 | |
|             android:id="@+id/imageTop"
 | |
|             android:layout_width="15dp"
 | |
|             android:layout_height="15dp"
 | |
|             android:layout_gravity="start"
 | |
|             android:layout_marginTop="2dp"
 | |
|             android:layout_marginRight="6dp"
 | |
|             android:visibility="gone"
 | |
|             android:src="@mipmap/star_active" />
 | |
| 
 | |
|         <CheckBox
 | |
|             android:id="@+id/id_check_box2"
 | |
|             android:layout_width="wrap_content"
 | |
|             android:layout_height="wrap_content"
 | |
|             android:layout_gravity="end"
 | |
|             android:layout_marginTop="5dp"
 | |
|             android:visibility="gone"
 | |
|             android:text=""/>
 | |
|         <TextView
 | |
|             android:id="@+id/tvImportTitle"
 | |
|             style="@style/TextViewNovelTitle"
 | |
|             android:layout_gravity="center"
 | |
|             android:layout_width="75dp"
 | |
|             android:gravity="center"
 | |
|             android:text=""
 | |
|             android:layout_weight="1"
 | |
|             android:visibility="gone"
 | |
|             />
 | |
| 
 | |
|     </FrameLayout>
 | |
|     <LinearLayout
 | |
|         android:layout_width="90dp"
 | |
|         android:layout_height="26dp">
 | |
|     <TextView
 | |
|         android:id="@+id/title"
 | |
|         style="@style/TextViewNovelTitle"
 | |
|         android:layout_gravity="center_horizontal"
 | |
|         android:layout_width="75dp"
 | |
|         android:gravity="top|center"
 | |
|         android:text="天龙八部天龙八部天龙八部"
 | |
|         android:layout_weight="1"
 | |
|        />
 | |
|         <CheckBox
 | |
|             android:id="@+id/id_check_box"
 | |
|             android:layout_width="wrap_content"
 | |
|             android:layout_height="wrap_content"
 | |
|             android:layout_gravity="end"
 | |
|             android:layout_marginTop="5dp"
 | |
|             android:visibility="gone"
 | |
|             android:layout_weight="0"
 | |
|             android:text=""/>
 | |
| </LinearLayout>
 | |
| </LinearLayout>
 |