mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-30 21:52:28 +01:00
Add transparency to the compose bar when wallpaper is present.
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
|
||||
<corners android:radius="4dp" />
|
||||
<solid android:color="@color/core_white"/>
|
||||
</shape>
|
||||
16
app/src/main/res/drawable/compose_background_wallpaper.xml
Normal file
16
app/src/main/res/drawable/compose_background_wallpaper.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<stroke
|
||||
android:width="1dp"
|
||||
android:color="@color/core_grey_05" />
|
||||
|
||||
<solid
|
||||
android:color="@color/conversation_item_wallpaper_bubble_color" />
|
||||
|
||||
<corners
|
||||
android:radius="20dp" />
|
||||
|
||||
</shape>
|
||||
Reference in New Issue
Block a user