こんにちは、チェックマーク画像の前後にスペースがある下の画像のように見えるチェックボックスリストを作成しようとしています。
しかし、チェックボックスを作成しようとすると、下の画像のように表示されます。
最初の画像を表示しているように、チェックマークの画像を囲むスペースはありません。パディングを使用してボックスコンポーネントをチェックすると、「android:padding=50dp」のように、チェックマークの画像とテキストの間にスペースができます。しかし、チェックマーク画像の前に開始.ieにスペースを与えていません。以下はチェックボックスの私のxmlレイアウトです
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="15dp">
<CheckBox android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:button="@drawable/btn_check_square"
android:background="@drawable/filter_item_background"
android:textColor="@android:color/black"
android:padding="5dp"
android:text="check box text"/>
</LinearLayout>
この問題を解決するための助けをいただければ幸いです。