0
如何才能在java代碼中創建此精確繪圖?以編程方式創建繪圖
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<size android:width="1dp" />
<solid android:color="#ff0000" />
<padding
android:bottom="-15px"
android:top="-5px" />
</shape>
我需要填充值是可變的,所以我不能做它的XML。
'我怎樣才能在java代碼中創建這個確切的繪製?'通過在畫布上繪圖。 –
希望你能從這裏得到提示[點擊這裏](http://stackoverflow.com/questions/7164630/how-to-change-shape-color-dynamically) – shahid17june
參見'GradientDrawable' docmmntation – pskink