mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 03:09:04 +01:00
Add new private message bubbles, get rid of 9-patch drawables
This reverts commit f8a8c0d8b8.
This commit is contained in:
17
briar-android/src/main/res/drawable/msg_in.xml
Normal file
17
briar-android/src/main/res/drawable/msg_in.xml
Normal file
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<corners
|
||||
android:bottomLeftRadius="@dimen/message_bubble_radius_big"
|
||||
android:bottomRightRadius="@dimen/message_bubble_radius_big"
|
||||
android:topLeftRadius="@dimen/message_bubble_radius_small"
|
||||
android:topRightRadius="@dimen/message_bubble_radius_big"/>
|
||||
<padding
|
||||
android:bottom="@dimen/message_bubble_padding_bottom"
|
||||
android:left="@dimen/message_bubble_padding_sides"
|
||||
android:right="@dimen/message_bubble_padding_sides"
|
||||
android:top="@dimen/message_bubble_padding_top"/>
|
||||
<solid
|
||||
android:color="@color/msg_in"/>
|
||||
</shape>
|
||||
Reference in New Issue
Block a user