107 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			107 lines
		
	
	
		
			3.1 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="wrap_content"
 | |
|     android:gravity="center"
 | |
|     android:background="@drawable/item_selector"
 | |
|     android:clickable="true"
 | |
|     android:layout_marginBottom="0dp"
 | |
|     android:paddingBottom="4dp"
 | |
|     android:paddingTop="4dp"
 | |
|     android:layout_weight="1">
 | |
| 
 | |
| 
 | |
|     <FrameLayout
 | |
|         android:layout_width="wrap_content"
 | |
|         android:layout_height="wrap_content">
 | |
| 
 | |
|         <ImageView
 | |
|             android:id="@+id/imageView"
 | |
|             style="@style/NovelImage.horizon"
 | |
|             android:src="@drawable/googleg_standard_color_18" />
 | |
|         <ImageView
 | |
|             android:id="@+id/imageTop1"
 | |
|             android:layout_width="25dp"
 | |
|             android:layout_height="25dp"
 | |
|             android:layout_gravity="start"
 | |
|             android:layout_marginTop="2dp"
 | |
|             android:layout_marginRight="6dp"
 | |
|             android:visibility="gone"
 | |
|             android:src="@drawable/sc_top_one" />
 | |
|         <ImageView
 | |
|             android:id="@+id/imageTop2"
 | |
|             android:layout_width="25dp"
 | |
|             android:layout_height="25dp"
 | |
|             android:layout_gravity="start"
 | |
|             android:layout_marginTop="2dp"
 | |
|             android:layout_marginRight="6dp"
 | |
|             android:visibility="gone"
 | |
|             android:src="@drawable/sc_top_two" />
 | |
|         <ImageView
 | |
|             android:id="@+id/imageTop3"
 | |
|             android:layout_width="25dp"
 | |
|             android:layout_height="25dp"
 | |
|             android:layout_gravity="start"
 | |
|             android:layout_marginTop="2dp"
 | |
|             android:layout_marginRight="6dp"
 | |
|             android:visibility="gone"
 | |
|             android:src="@drawable/sc_top_three" />
 | |
|     </FrameLayout>
 | |
| 
 | |
| 
 | |
| 
 | |
|     <LinearLayout
 | |
|         android:orientation="vertical"
 | |
|         android:layout_width="match_parent"
 | |
|         android:layout_height="match_parent"
 | |
|         android:gravity="top"
 | |
|         android:layout_weight="1"
 | |
| 
 | |
|         >
 | |
| 
 | |
|         <TextView
 | |
|             android:id="@+id/title"
 | |
|             style="@style/TextViewNovelTitle.horizon"
 | |
| 
 | |
|             android:text=" "
 | |
|            />
 | |
| 
 | |
|         <LinearLayout
 | |
|         android:layout_marginTop="2dp"
 | |
|         android:layout_marginLeft="0dp"
 | |
|         android:orientation="horizontal"
 | |
|         android:layout_width="match_parent"
 | |
|         android:layout_height="wrap_content"
 | |
|         >
 | |
|             <TextView
 | |
|             style="@style/TextViewNovelType"
 | |
|             android:id="@+id/category"
 | |
|             android:text=" "
 | |
|             />
 | |
|             <TextView
 | |
|                 style="@style/TextViewNovelType.Status"
 | |
|                 android:id="@+id/tvNovelStatus"
 | |
|                 android:text=""
 | |
|                 android:layout_marginLeft="10dp"
 | |
| 
 | |
|                 />
 | |
|         <TextView
 | |
|             android:id="@+id/author"
 | |
|             style="@style/TextViewNovelAuthor"
 | |
|             android:text=" "
 | |
|             />
 | |
| 
 | |
| 
 | |
| 
 | |
|     </LinearLayout>
 | |
|         <TextView
 | |
|             android:id="@+id/desc"
 | |
|         style="@style/TextViewNovelDesc"
 | |
|             android:text=" "
 | |
|         />
 | |
| 
 | |
|     </LinearLayout>
 | |
| 
 | |
| </LinearLayout>
 |