鑑於我有一個背景繪製創建TextViews bulletpoints這樣的:<size>屬性在使用層列表時沒有用?
然後我的XML代碼如下所示:
<?xml version="1.0" encoding="utf-8"?>
<layer-list
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:right="235dp">
<shape android:shape="oval">
<padding android:left="10dp" />
<size android:height="5dp" android:width="5dp"/>
<solid android:color="@color/my_pink"/>
</shape>
</item>
<item android:left="10dp">
<shape android:shape="rectangle">
<solid android:color="#ffffff"/>
<padding android:left="10dp" />
</shape>
</item>
</layer-list>
但一旦我用上面的代碼所示,我要點是這樣的:
看來<size>
標記完全被忽略。
你會如何解決這個問題?使用9patch,是的,我知道..也許這是最容易做到的..但事實上,我希望找到一個XML解決方案,因爲它在將來更加靈活。
自定義繪圖也是不可能的。
看我的答案http://stackoverflow.com/questions/26841517/layer-list-ignore-size-tag/ – offset