dimanche 2 août 2015

Android How can i make a gradient of this EditText

This colour code is given to me .

  background-image:-moz-linear-gradient(53% 0% -90deg,rgb(255,255,255) 0%,rgb(204,204,204) 100%); 
    background-image:linear-gradient(-90deg,rgb(255,255,255) 0%,rgb(204,204,204) 100%);
    width:787px;
    height:142px;
    border-color:rgb(221,221,221);
    border-width:1px;
    border-style:solid;\

And ask for this this is a preview I try This code in my background of edittext

<?xml version="1.0" encoding="utf-8"?>
<!--  res/drawable/rounded_edittext.xml -->
<shape xmlns:android="http://ift.tt/nIICcg"
    android:shape="rectangle" android:padding="10dp">
    <solid android:color="#FFFFFF"/>

    <corners
        android:bottomRightRadius="20dp"
        android:bottomLeftRadius="20dp"
        android:topLeftRadius="20dp"
        android:topRightRadius="20dp"/>
    <gradient
        android:startColor="#ffcccccc"
        android:centerColor="#e7e7e8"
        android:type="linear"
        android:endColor="#ffcccccc"
        android:angle="90" />
</shape>

Now I want same as picture but i cant get It. How can i set this ?

Aucun commentaire:

Enregistrer un commentaire