24 lines
		
	
	
		
			791 B
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			791 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="match_parent"
 | |
|     android:orientation="vertical"
 | |
|     android:layout_gravity="center">
 | |
|     <com.novelbook.android.AD.AdvertisementView
 | |
|         android:id="@+id/adSplashView"
 | |
|         android:layout_width="match_parent"
 | |
|         android:layout_height="match_parent"
 | |
|         android:layout_weight="1"
 | |
|         />
 | |
| 
 | |
|     <TextView android:id="@+id/textTile"
 | |
|         android:layout_gravity="center"
 | |
|         android:gravity="center"
 | |
|         android:layout_width="wrap_content"
 | |
|         android:layout_height="50dp"
 | |
|         android:textSize="20sp"
 | |
|         android:textStyle="bold"
 | |
|         android:text="" />
 | |
| 
 | |
| </LinearLayout>
 |