mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-23 18:15:22 +00:00
db9656c70c
1) No more blue/green for outgoing messages. Just lock or no lock. 2) Use 9-patches instead of shapes for better bubble performance. 3) Use tinting rather than different colored assets. 4) Change outgoing status indicators so that they don't change width of the bubble as they update. 5) Switch to using ..., check, double-check for pending, sent, delivered rather than using bubble tone to indicate pending. // FREEBIE
19 lines
705 B
XML
19 lines
705 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<item>
|
|
<shape android:shape="rectangle">
|
|
<solid android:color="#0d000000" />
|
|
<corners android:radius="@dimen/message_bubble_corner_radius" />
|
|
</shape>
|
|
</item>
|
|
|
|
<item android:bottom="@dimen/message_bubble_shadow_distance">
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<solid android:color="#fff3f3f3" />
|
|
<corners android:bottomLeftRadius="@dimen/message_bubble_corner_radius" android:bottomRightRadius="@dimen/message_bubble_corner_radius" />
|
|
</shape>
|
|
</item>
|
|
|
|
</layer-list>
|