17 lines
		
	
	
		
			633 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			633 B
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <merge xmlns:android="http://schemas.android.com/apk/res/android"
 | |
|     android:layout_width="match_parent"
 | |
|     android:layout_height="match_parent">
 | |
|     <ImageView
 | |
|         android:id="@+id/iv_icon"
 | |
|         android:layout_width="@dimen/error_icon_size"
 | |
|         android:layout_height="@dimen/error_icon_size"/>
 | |
|     <TextView
 | |
|         android:textSize="@dimen/theme_15sp"
 | |
|         android:textColor="@color/theme_txt_light"
 | |
|         android:gravity="center"
 | |
|         android:id="@+id/tv_msg"
 | |
|         android:layout_width="@dimen/error_msg_width"
 | |
|         android:layout_height="wrap_content"/>
 | |
| </merge>
 |