25 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
 | |
|     android:id="@+id/icon_group"
 | |
|     android:layout_width="@dimen/notification_large_icon_width"
 | |
|     android:layout_height="@dimen/notification_large_icon_height">
 | |
|     <ImageView
 | |
|         android:id="@+id/icon"
 | |
|         android:layout_width="match_parent"
 | |
|         android:layout_height="match_parent"
 | |
|         android:layout_marginTop="@dimen/notification_big_circle_margin"
 | |
|         android:layout_marginBottom="@dimen/notification_big_circle_margin"
 | |
|         android:scaleType="centerInside"
 | |
|         android:layout_marginStart="@dimen/notification_big_circle_margin"
 | |
|         android:layout_marginEnd="@dimen/notification_big_circle_margin"/>
 | |
|     <ImageView
 | |
|         android:layout_gravity="end|bottom"
 | |
|         android:id="@+id/right_icon"
 | |
|         android:visibility="gone"
 | |
|         android:layout_width="@dimen/notification_right_icon_size"
 | |
|         android:layout_height="@dimen/notification_right_icon_size"
 | |
|         android:layout_marginBottom="8dp"
 | |
|         android:scaleType="centerInside"
 | |
|         android:layout_marginEnd="8dp"/>
 | |
| </FrameLayout>
 |