mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-26 16:22:39 +00:00
Android 9 gradients play well with setting colors using all color resources OR attr, using both causes a crash.
10 lines
442 B
XML
10 lines
442 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
|
|
<gradient
|
|
android:angle="90"
|
|
android:startColor="?attr/colorContentBackground"
|
|
android:centerColor="?attr/colorGradientTransparentBackground"
|
|
android:endColor="?attr/colorGradientTransparentBackground"
|
|
android:type="linear"
|
|
android:centerX="0.6"/>
|
|
</shape>
|