Android 2.3.4チェックボックスのビットマップを変更し、ビットマップのサイズを設定して拡大縮小したいと考えています。私はこのようなチェックボックスに変更:描画可能一致するXMLでアンドロイドチェックボックスのボタンのサイズを変更するにはどうすればよいですか?
<CheckBox
android:id="@+id/cb1"
android:button="@drawable/checkbox"
android:layout_alignParentLeft="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Sort: 1" />
を
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true" android:state_focused="true" android:drawable="@drawable/checkbox_on_background_focus_yellow"/>
<item android:state_checked="false" android:state_focused="true" android:drawable="@drawable/checkbox_off_background_focus_yellow"/>
<item android:state_checked="false" android:drawable="@drawable/checkbox_off_background" />
<item android:state_checked="true" android:drawable="@drawable/checkbox_on_background" />
</selector>
どのように私は、チェックボックスのビットマップのサイズを変更するにはディップ/ DPの値を設定することができますか?
私はあなたが何を意味するのか分かりません、もっと正確になりますか? – HardCoder