29 lines
		
	
	
		
			894 B
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			894 B
		
	
	
	
		
			XML
		
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 | |
|     android:layout_width="match_parent"
 | |
|     android:layout_height="50dp">
 | |
| 
 | |
|     <TextView
 | |
|         android:id="@+id/catalogue_tv"
 | |
|         android:layout_width="match_parent"
 | |
|         android:layout_height="50dp"
 | |
|         android:singleLine="true"
 | |
|         android:gravity="center_vertical"
 | |
|         android:layout_marginLeft="10dp"
 | |
| 
 | |
|         android:layout_weight="1"
 | |
|          />
 | |
|     <TextView
 | |
|         android:id="@+id/catalogue_cache"
 | |
|         style="@style/TextViewNovelDesc"
 | |
|         android:layout_width="wrap_content"
 | |
|         android:layout_height="wrap_content"
 | |
|         android:singleLine="true"
 | |
|         android:layout_weight="0"
 | |
|         android:gravity="right|center_vertical"
 | |
|         android:text="@string/cached"
 | |
|         android:layout_marginLeft="10dp"
 | |
|         />
 | |
| 
 | |
| </LinearLayout>
 |