我不明白圖層列表是如何工作的。我閱讀官方documentation with some examples,但它不像我預期的那樣工作。我想要四個正方形應該用1dp填充,但沒有像預期的那樣。下面是500%縮放截圖:瞭解Android的<layer-list>
(錯誤的顏色並不重要)
正如你所看到的大小是完全錯誤的和補白失蹤。我試圖設置像width/height和right/left/top/buttom這樣的真實值,以確保android獲得我想要的點。
這裏是我的xml:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:top="0dp" android:left="0dp" android:bottom="0dp" android:right="0dp">
<shape android:shape="rectangle">
<size android:width="9dp"
android:height="9dp"/>
<solid android:color="#f000"/>
</shape>
</item>
<item android:top="1dp" android:left="1dp" android:bottom="5dp" android:right="5dp">
<shape android:shape="rectangle">
<size android:width="3dp"
android:height="3dp"/>
<solid android:color="#f00"/>
</shape>
</item>
<item android:top="1dp" android:left="5dp" android:bottom="5dp" android:right="1dp">
<shape android:shape="rectangle">
<size android:width="3dp"
android:height="3dp"/>
<solid android:color="#0f0"/>
</shape>
</item>
<item android:top="5dp" android:left="1dp" android:bottom="1dp" android:right="5dp">
<shape android:shape="rectangle">
<size android:width="3dp"
android:height="3dp"/>
<solid android:color="#0f0"/>
</shape>
</item>
<item android:top="5dp" android:left="5dp" android:bottom="1dp" android:right="1dp">
<shape android:shape="rectangle">
<size android:width="3dp"
android:height="3dp"/>
<solid android:color="#f00"/>
</shape>
</item>
</layer-list>
你是如何製作屏幕截圖的? '因爲它給我的圖像看起來絕對正確...... – OcuS
我從eclipse中取得了視覺編輯器。 – rekire
@rekire編輯器是越野車,所以你知道,它並不總是顯示正確的形狀。始終檢查設備。 –