59 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			2.2 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="100dp"
 | |
|     android:gravity="center"
 | |
|     android:background="@drawable/item_selector"
 | |
|     android:clickable="true"
 | |
|     android:layout_weight="1">
 | |
|     <ImageView
 | |
|         android:id="@+id/imageView"
 | |
|         android:layout_margin="10dp"
 | |
|         android:layout_width="80dp"
 | |
|         android:layout_height="80dp"
 | |
|         android:layout_weight="0"
 | |
|         android:gravity="left"
 | |
|         android:src="@drawable/googleg_standard_color_18" />
 | |
|     <LinearLayout
 | |
|         android:orientation="vertical"
 | |
|         android:layout_width="match_parent"
 | |
|         android:layout_height="match_parent"
 | |
|         android:gravity="center"
 | |
|         android:layout_weight="1">
 | |
| 
 | |
|         <TextView
 | |
|             android:id="@+id/title"
 | |
|             android:layout_width="wrap_content"
 | |
|             android:layout_height="30dp"
 | |
|             android:layout_gravity="left"
 | |
|             android:text="射雕英雄传"
 | |
|             android:textColor="#212121" />
 | |
|         <TextView
 | |
|             android:id="@+id/desc"
 | |
|             android:layout_marginTop="5dp"
 | |
|             android:layout_width="match_parent"
 | |
|             android:layout_height="wrap_content"
 | |
|             android:gravity="left"
 | |
|             android:textSize="11sp"
 | |
|             android:maxLength="70"
 | |
|             android:maxLines="2"
 | |
|             android:text="11111111111111111111111111"
 | |
|             android:textColor="@color/common_google_signin_btn_text_light" />
 | |
|         <TextView
 | |
|             android:id="@+id/category"
 | |
|             android:layout_marginTop="5dp"
 | |
|             android:layout_width="match_parent"
 | |
|             android:layout_height="wrap_content"
 | |
|             android:gravity="left"
 | |
|             android:textSize="12sp"
 | |
|             android:text="武侠"
 | |
|             android:textColor="@color/common_google_signin_btn_text_light" />
 | |
|         <TextView
 | |
|             android:id="@+id/author"
 | |
|             android:layout_width="wrap_content"
 | |
|             android:layout_height="wrap_content"
 | |
|              android:visibility="gone" />
 | |
|     </LinearLayout>
 | |
| </LinearLayout>
 |