2
你好我試圖使用shape.xml安卓:顯示漸變狀陰影使用shape.xml
從形象包裝我的按鈕中的線性得到陰影像只在頂部梯度佈局,我想給佈局頂部的漸變。
上午下面做什麼,但它不工作了
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
<shape
android:shape="rectangle">
<stroke android:width="1dp" android:color="#f0f0f0" />
<solid android:color="#f0f0f0" />
</shape>
</item>
<item android:top="1dp">
<shape
android:shape="line">
<gradient
android:angle="90"
android:type="linear"
android:startColor="#FFFFFF"
android:endColor="#000000" />
</shape>
</item>
</layer-list>
代碼是給梯度整個線性layout..just想一行佈局 – hari86
@ hari86,不明白你的觀點。 –