これは線形レイアウトの周りに境界線を追加する xml ファイルです このコードにグラデーション カラー効果コードを追加するにはどうすればよいですか? この色#C0C0C0をグラデーションカラーに置き換えたい
以下は私のコードです
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="#000000" />
</shape>
</item>
<item
android:left="1dp"
android:right="1dp"
android:top="2dp"
android:bottom="2dp" >
<shape android:shape="rectangle">
<solid android:color="#C0C0C0" />
</shape>
</item>
</layer-list>
このコードをボーダー .xml ファイルに追加したいのですが、どのようにマージしますか??
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="#fefdfe"
android:endColor="#e8e3ec"
android:angle="90" />
</shape>