2
我想創建一個漸變drawable來描述一些東西的比例。作爲一個通用的例子,假設你正在查看包含一組汽車的listview。背景可能是一個燃料衡量標準 - 我不希望平穩過渡。我想要一個非常緊湊的轉換,並且我希望能夠設置轉換髮生的位置。Android「高級」漸變 - 「拇指」位置?
這是我在盯着看,但我沒有走得很遠。
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="#D2E3D3"
android:endColor="#E6E6E3"
android:angle="0"
/>
<corners android:radius="0dp" />
</shape>
謝謝!