mardi 2 juin 2015

Android: Compound Drawables With Intrinsic Bounds on 4.2.2 and below

I try to use checkbox with left Compound Drawable like this:

holder.selCategoryCheckBox.setCompoundDrawablesWithIntrinsicBounds(imageResource, 0, 0, 0);

xml:

<RelativeLayout
xmlns:android="http://ift.tt/nIICcg"
android:layout_width="match_parent"
android:layout_height="50dp"
android:orientation="horizontal">

<CheckBox
    android:id="@+id/category_sel_checkbox"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:layout_toLeftOf="@+id/categorySelectionOptions"
    android:layout_toStartOf="@+id/categorySelectionOptions"
    android:drawablePadding="@dimen/more_than_big_padding"
    android:paddingLeft="@dimen/big_padding"
    android:paddingTop="@dimen/big_padding"
    android:paddingBottom="@dimen/big_padding"
    android:singleLine="true"
    android:textSize="18sp"
    android:layout_marginLeft="@dimen/five_margin"
    android:layout_marginStart="@dimen/five_margin"/>

<ImageView
    android:id="@+id/categorySelectionOptions"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_alignParentRight="true"
    android:layout_alignParentEnd="true"
    android:layout_marginLeft="@dimen/main_middle_margin"
    android:layout_marginStart="@dimen/main_middle_margin"
    android:background="@drawable/row_selector_list_dots"
    android:clickable="true"
    android:src="@drawable/ic_action_drawer_dots"
    android:contentDescription="@string/image"
    android:layout_centerVertical="true" />

On Android 4.3 Jelly Bean and Up is working fine: enter image description here

But On Android 4.2 Jelly Bean and below the spacing is broken: enter image description here

Some ideas, what's wrong?




Aucun commentaire:

Enregistrer un commentaire