I want to add custom designed checkboxes to a Dialog. The Dialogs view is set as TableLayout and the number of rows are dynamic. The normal checkbox is too large, so I created custom selector with different state drawables (checkbox.xml):
<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"/>
and added it to my custom checkbox constructor:
setButtonDrawable(R.drawable.checkbox);
If the checkbox has the focus everything seems to work fine, but not the look falls back to the default layout:

I already play around with the xml and switched/added some states, but nothing seems to work.
How can I fix this, so that my images are used if the checkbox has no focus and that the content in table cell is not so large as the default checkbox?
Thanks in advance, Danny