126 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			126 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			XML
		
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 | |
|     xmlns:tools="http://schemas.android.com/tools"
 | |
|     android:layout_width="match_parent"
 | |
|     android:layout_height="wrap_content"
 | |
|     android:orientation="horizontal"
 | |
|     tools:ignore="HardcodedText">
 | |
| 
 | |
| 
 | |
|         <ImageView
 | |
|             android:id="@+id/iv_listitem_image"
 | |
|             style="@style/NovelImage.horizon"
 | |
|             android:scaleType="centerCrop" />
 | |
| 
 | |
|     <LinearLayout
 | |
|         android:layout_weight="1"
 | |
|         android:layout_width="match_parent"
 | |
|         android:layout_height="wrap_content"
 | |
|         android:layout_centerVertical="true"
 | |
|         android:layout_marginStart="10dp"
 | |
|         android:layout_marginLeft="10dp"
 | |
|         android:layout_toStartOf="@+id/iv_listitem_image"
 | |
|         android:layout_toLeftOf="@+id/iv_listitem_image"
 | |
|         android:orientation="vertical">
 | |
| 
 | |
|         <TextView
 | |
|             android:id="@+id/tv_listitem_ad_title"
 | |
|             style="@style/TextViewNovelTitle.horizon"
 | |
|              />
 | |
| 
 | |
|         <RelativeLayout
 | |
|             android:layout_width="match_parent"
 | |
|             android:layout_height="wrap_content">
 | |
| 
 | |
|             <ImageView
 | |
|                 android:id="@+id/iv_listitem_icon"
 | |
|                 android:layout_width="10dp"
 | |
|                 android:layout_height="10dp"
 | |
| 
 | |
|                 android:layout_marginStart="10dp"
 | |
|                 android:layout_marginLeft="10dp" />
 | |
| 
 | |
|             <LinearLayout
 | |
|                 android:id="@+id/tv_source_desc_layout"
 | |
|                 android:layout_width="100dp"
 | |
|                 android:layout_height="wrap_content"
 | |
|                 android:layout_below="@id/layout_image_group"
 | |
|                 android:layout_centerVertical="true"
 | |
|                 android:layout_marginStart="5dp"
 | |
|                 android:layout_marginLeft="5dp"
 | |
|                 android:layout_toEndOf="@id/iv_listitem_icon"
 | |
|                 android:layout_toRightOf="@id/iv_listitem_icon"
 | |
|                 android:orientation="vertical">
 | |
| 
 | |
|                 <TextView
 | |
|                     android:id="@+id/tv_listitem_ad_desc"
 | |
|                     android:layout_width="80dp"
 | |
|                     android:layout_height="20dp"
 | |
|                     android:ellipsize="end"
 | |
|                     android:singleLine="true"
 | |
|                     android:textSize="10sp" />
 | |
| 
 | |
|                 <TextView
 | |
|                     android:id="@+id/tv_listitem_ad_source"
 | |
|                     android:layout_width="100dp"
 | |
|                     android:layout_height="wrap_content"
 | |
|                     android:layout_marginStart="10dp"
 | |
|                     android:layout_marginLeft="10dp"
 | |
|                     android:layout_marginBottom="10dp"
 | |
|                     android:ellipsize="end"
 | |
|                     android:singleLine="true"
 | |
|                     android:textSize="8sp" />
 | |
| 
 | |
|             </LinearLayout>
 | |
| 
 | |
| 
 | |
| 
 | |
|         </RelativeLayout>
 | |
| 
 | |
|         <!--==== 测试下载状态控制功能 begin ========-->
 | |
|       <!--  <LinearLayout
 | |
|             android:layout_width="match_parent"
 | |
|             android:layout_height="wrap_content"
 | |
|             android:orientation="horizontal">
 | |
| 
 | |
|             <Button
 | |
|                 android:id="@+id/btn_listitem_stop"
 | |
|                 android:layout_width="wrap_content"
 | |
|                 android:layout_height="wrap_content"
 | |
|                 android:text="暂停"
 | |
|                 android:visibility="gone" />
 | |
| 
 | |
|             <Button
 | |
|                 android:id="@+id/btn_listitem_remove"
 | |
|                 android:layout_width="wrap_content"
 | |
|                 android:layout_height="wrap_content"
 | |
|                 android:text="删除"
 | |
|                 android:visibility="gone" />
 | |
|         </LinearLayout>-->
 | |
|         <!--==== 测试下载状态控制功能 end ========-->
 | |
|         <Button
 | |
|             android:id="@+id/btn_listitem_creative"
 | |
|             style="@style/buttonCates"
 | |
|             android:layout_width="wrap_content"
 | |
|             android:layout_height="40dp"
 | |
| 
 | |
|             android:textSize="9sp" />
 | |
|     </LinearLayout>
 | |
| 
 | |
|     <ImageView
 | |
|         android:id="@+id/iv_listitem_dislike"
 | |
|         android:layout_weight="0"
 | |
|         android:layout_width="20dp"
 | |
|         android:layout_height="20dp"
 | |
|         android:layout_alignParentTop="true"
 | |
|         android:layout_alignParentRight="true"
 | |
|         android:layout_marginTop="10dp"
 | |
|         android:layout_marginRight="10dp"
 | |
|         android:clickable="true"
 | |
|         android:src="@drawable/dislike_icon" />
 | |
| 
 | |
| 
 | |
| </LinearLayout>
 | |
| 
 | |
| 
 |