How to create a gradient?
Creating a gradient is easy.
Gradient Properties ........
android:startColor="put here your color"
android:endColor="put here your color"
android:centerColor="put your color here"
android:angle="45"
if you need gradient in
horizontal way to put angle = "0"
vertical path rotation angle = "90"
= "45"
= "135"
.......
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient android:startColor="#915d5b"
android:endColor="#418c47"
android:angle="45"></gradient>
</shape>

.......