User defined image/color as background with transparency/fade/blur effects #33

Open
opened 2019-08-12 19:47:47 +00:00 by Y2K · 1 comment

Just a feature idea, as the title suggests.

Just a feature idea, as the title suggests.
Owner

On it.

/res/drawable/drawable_bg_card_grey.xml manages this.

It should be possible to replace

<shape
  xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="@color/primary_600" />
    <corners android:radius="3.0dip" />
</shape>

with something like

<layer-list
  xmlns:android="http://schemas.android.com/apk/res/android">
<item>
    <bitmap android:gravity="center" android:src="@drawable/background_image" android:tileMode="disabled" />
</item>
</layer-list>

I'll experiment and update this.

On it. `/res/drawable/drawable_bg_card_grey.xml` manages this. It should be possible to replace ```xml <shape xmlns:android="http://schemas.android.com/apk/res/android"> <solid android:color="@color/primary_600" /> <corners android:radius="3.0dip" /> </shape> ``` with something like ```xml <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <item> <bitmap android:gravity="center" android:src="@drawable/background_image" android:tileMode="disabled" /> </item> </layer-list> ``` I'll experiment and update this.
a added the
patch idea
label 2020-07-31 14:13:39 +00:00
This repo is archived. You cannot comment on issues.
No Milestone
No Assignees
2 Participants
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: distok/cutthecord#33
No description provided.