55 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
		
		
			
		
	
	
			55 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
|  | <?xml version="1.0" encoding="utf-8"?> | ||
|  | <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
|  |     android:layout_width="match_parent" | ||
|  |     android:layout_height="match_parent" | ||
|  |     android:background="@color/white" | ||
|  |     android:orientation="vertical"> | ||
|  | <!-- | ||
|  |     <LinearLayout | ||
|  |         android:layout_width="match_parent" | ||
|  |         android:layout_height="wrap_content" | ||
|  |         android:orientation="horizontal" | ||
|  |         > | ||
|  |         <TextView | ||
|  |             android:id="@+id/tvTitle" | ||
|  |             style="@style/TitleText" | ||
|  |             android:layout_weight="1" | ||
|  |             android:layout_width="match_parent" | ||
|  |             android:layout_height="wrap_content" /> | ||
|  |         <ImageButton | ||
|  |             android:id="@+id/btnSort" | ||
|  |             android:layout_weight="0" | ||
|  |             android:layout_width="wrap_content" | ||
|  |             android:layout_height="wrap_content" | ||
|  |             android:src="@drawable/ic_format_line_spacing_black_24dp" | ||
|  |             style="@style/buttonCates"/> | ||
|  |     </LinearLayout>--> | ||
|  |     <TextView | ||
|  |         android:id="@+id/tvChapts" | ||
|  |         style="@style/TextViewNovelTitle" | ||
|  |         android:layout_width="match_parent" | ||
|  |         android:layout_height="wrap_content" /> | ||
|  |     <android.support.v4.widget.SwipeRefreshLayout | ||
|  |         android:id="@+id/swipeLayout" | ||
|  |         android:layout_width="match_parent" | ||
|  |         android:layout_height="match_parent" | ||
|  |         android:orientation="vertical"> | ||
|  | 
 | ||
|  |     <ListView | ||
|  |         android:id="@+id/lv_catalogue" | ||
|  |         android:layout_width="match_parent" | ||
|  |         android:layout_height="match_parent" | ||
|  |         android:divider="@color/list_item_divider" | ||
|  |         android:dividerHeight="1dp" /> | ||
|  |     </android.support.v4.widget.SwipeRefreshLayout> | ||
|  |     <Button | ||
|  |         android:id="@+id/btnRefresh" | ||
|  |         android:layout_width="100dp" | ||
|  |         android:layout_height="wrap_content" | ||
|  |         style="@style/buttonRound" | ||
|  |         android:layout_gravity="center" | ||
|  |         android:text="@string/refresh" | ||
|  |         android:visibility="gone" | ||
|  |         /> | ||
|  | 
 | ||
|  | </FrameLayout> |