2017-03-11 8 views
1

사용자 정의 배경을 만들고 싶습니다. drawable 폴더에 생성하고 싶습니다.안드로이드에서 스트로크 모양에 그라데이션 색상을 설정하는 방법

<?xml version="1.0" encoding="utf-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android"> 

    <stroke 
     android:width="1dp" 
     android:color="@color/gradient_center" /> 

    <corners android:radius="5dp" /> 

</shape> 

을하지만,이 코드에서 난 그냥 내가 stroke 색상 그라데이션 색상을 설정하려면, stroke에 대한 색상을 판매 설정이 배경에 대한
나는 코드 아래 물품.

나는 어떻게 할 수 있습니까?

답변

0
<?xml version="1.0" encoding="utf-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android"> 

<gradient 
    android:angle="90" 
    android:endColor="#b5b6d2" 
    android:startColor="#555994" 
    android:type="linear" /> 

<corners android:radius="5dp" /> 

</shape>