Remove gradient

0

In my% color% the coloration is set to side_nav_bar :

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
    android:angle="135"
    android:centerColor="#009688"
    android:endColor="#00695C"
    android:startColor="#4DB6AC"
    android:type="linear" />

How do I remove the gradient so that only one color remains?

    
asked by anonymous 07.12.2017 / 16:36

1 answer

0

The solution was simple, just change the gradiend to solid thus:

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid
    android:color="#00695C" />
    
07.12.2017 / 18:11