レイヤリストの仕組みがわかりません。私は公式documentation with some examplesを読むが、それは私の期待どおりには機能しません。私は1dpで埋められるべき4つの正方形が欲しいが、何も期待どおりではない。Androidの理解について<layer-list>
(間違った色は関係ありません)
あなたが見ることができるようにサイズが完全に間違っているとパディングが不足している:ここでは500%でスケーリングスクリーンショットです。私はwidthとheight、right/left/top/buttomのような実際の値を設定しようとしました。
<?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
私は日食からビジュアルエディタを取った。 – rekire
@rekireエディタはちょうどバグですので、必ずしも適切な形を表示するとは限りません。常にデバイスをチェックしてください。 –