51 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			XML
		
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 | |
|          android:id="@+id/ll1"
 | |
|         android:layout_width="match_parent"
 | |
|         android:layout_height="wrap_content"
 | |
|         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="match_parent"
 | |
|             android:orientation="horizontal">
 | |
| 
 | |
|             <ImageView
 | |
|                 android:id="@+id/imageView"
 | |
|                 style="@style/NovelImage.horizon"
 | |
|                 android:layout_width="40dp"
 | |
|                 android:layout_height="60dp"
 | |
|                 android:gravity="center_horizontal"
 | |
|                 android:src="@drawable/googleg_standard_color_18" />
 | |
| 
 | |
|             <LinearLayout
 | |
|                 android:layout_width="match_parent"
 | |
|                 android:layout_height="match_parent"
 | |
|                 android:layout_weight="1"
 | |
|                 android:gravity="center"
 | |
|                 android:layout_marginLeft="15dp"
 | |
|                 android:orientation="vertical">
 | |
| 
 | |
|                 <TextView
 | |
|                     android:id="@+id/tvCateName"
 | |
|                     style="@style/NovelBlockTitle"
 | |
|                     android:layout_height="wrap_content"
 | |
|                     android:gravity="center_vertical"
 | |
| 
 | |
|                     android:text="原创风云榜"
 | |
|                     android:textSize="18sp" />
 | |
| 
 | |
|                 <TextView
 | |
|                     android:id="@+id/tvNovels"
 | |
|                     android:text="abcd efg hi"
 | |
|                     style="@style/TextViewNovelDesc.titles"/>
 | |
| 
 | |
|             </LinearLayout>
 | |
|         </LinearLayout>
 | |
|         <LinearLayout style="@style/llGraySplit.2dp.gray" />
 | |
|     </LinearLayout>
 |