habitica-android/Habitica/res/drawable/no_party_background_gradient.xml
Hafiz 351372e1c0 LinearGradient Android 9 Fix
Android 9 gradients play well with setting colors using all color resources OR attr, using both causes a crash.
2023-03-24 23:40:15 -04:00

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>