1<?xml version="1.0" encoding="utf-8"?>
2<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3 <item android:right="@dimen/bubble_avatar_distance" android:bottom="0dp">
4 <shape android:shape="rectangle">
5 <corners
6 android:radius="0dp"
7 android:bottomLeftRadius="@dimen/bubble_radius"
8 android:bottomRightRadius="0dp"
9 android:topLeftRadius="@dimen/bubble_radius"
10 android:topRightRadius="@dimen/bubble_radius" />
11 <padding
12 android:bottom="0dp"
13 android:left="0dp"
14 android:right="0dp"
15 android:top="0dp" />
16 <size android:width="10dp" android:height="10dp" />
17 <solid android:color="?colorSurface" />
18 </shape>
19 </item>
20 <item android:bottom="0dp" android:gravity="bottom|right" android:width="@dimen/bubble_avatar_distance" android:height="@dimen/bubble_avatar_distance">
21 <vector
22 android:width="24dp"
23 android:height="24dp"
24 android:viewportWidth="24.0"
25 android:viewportHeight="24.0">
26 <path
27 android:pathData="M0,24 V 0 L24,24 z"
28 android:strokeColor="?colorSurface"
29 android:fillColor="?colorSurface"/>
30 </vector>
31 </item>
32</layer-list>