mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
It does so by extending the compound view `TextAvatarView` and provides convienient setters that take care of the required UI changes. The new badge can also be used to indicate a problem with the forum. Closes #408
22 lines
477 B
XML
22 lines
477 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="rectangle">
|
|
|
|
<corners
|
|
android:radius="@dimen/unread_bubble_size"/>
|
|
|
|
<padding
|
|
android:left="@dimen/unread_bubble_padding_horizontal"
|
|
android:right="@dimen/unread_bubble_padding_horizontal"/>
|
|
|
|
<solid
|
|
android:color="@color/briar_gold"/>
|
|
|
|
<stroke
|
|
android:color="@color/briar_primary"
|
|
android:width="@dimen/avatar_border_width"/>
|
|
|
|
</shape>
|
|
|