web-dev-qa-db-fra.com

L'image CheckBox personnalisée est coupée

CheckBox

Comme vous pouvez le voir dans l'image ci-dessus. Il y a trois vues sur cette capture d'écran.
- Le premier élément est CheckBox avec le texte et l'état désactivé.
- Le deuxième élément est CheckBox sans texte et ayant le statut activé.
- Le dernier élément est ImageView avec src pointant sur l'image pouvant être dessinée.

Les cases à cocher ont été personnalisées à l'aide de Android:button.

small checkbox

Comme j'ai essayé d'utiliser des images plus petites, toutes les cases à cocher sont alignées à gauche.

La comparaison de ces deux images m'indique que la taille par défaut de CheckBox semble fixée à une certaine taille jusqu'à ce que l'attribut text soit suffisamment grand pour nécessiter une extension.

Il n'y a rien de spécial dans le fichier aussi. Voir ci-dessous.

custom_cb.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:Android="http://schemas.Android.com/apk/res/Android">

    <item Android:drawable="@drawable/creditcard_selected" Android:state_checked="true" />
    <item Android:drawable="@drawable/creditcard"/>

</selector>

layout.xml

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
              Android:layout_width="match_parent"
              Android:layout_height="match_parent">
    <CheckBox Android:id="@+id/cbFalse"
              Android:layout_width="wrap_content"
              Android:layout_height="wrap_content"
              Android:button="@drawable/custom_cb"
              Android:text="" />
    <CheckBox Android:id="@+id/cbTrue"
              Android:layout_width="wrap_content"
              Android:layout_height="wrap_content"
              Android:button="@drawable/custom_cb"
              Android:focusable="false"
              Android:checked="true"
              Android:layout_toRightOf="@id/cbFalse" />
    <ImageView Android:id="@+id/imvTrue"
              Android:layout_width="wrap_content"
              Android:layout_height="wrap_content"
              Android:src="@drawable/creditcard"
              Android:layout_toRightOf="@id/cbTrue" />
</RelativeLayout>

Puis-je utiliser une image plus grande pour CheckBox tout en conservant la taille wrap_content? Si je règle CheckBox layout_width sur pixel ou dp réel, il affiche la totalité de l’image mais cela signifie que je dois vérifier manuellement la taille à chaque changement. 

27
RobGThai

Aujourd'hui, j'ai eu le même problème (mon image personnalisée a été coupée sur le côté gauche) . Je l'ai corrigé en mettant:

Android:button="@null"
Android:background="@drawable/my_custom_checkbox_state.xml"
59
Luca Sepe

Juste utiliser 

Android:button="@null"
Android:background="@null"
Android:drawableLeft="your custom selector"
Android:drawablePadding="as you need"
Android:text="your text"

Thats it .. Son fonctionne bien ..

15
Sripathi

Vous devez seulement changer votre dessin de Android:button en Android:drawableLeft ou Android:drawableRight. Et définissez le bouton sur null pour ne pas afficher la case à cocher par défaut.

Ma case à cocher ressemble à ceci: 

<CheckBox
   Android:id="@+id/cb_toggle_switch"
   Android:layout_width="wrap_content"
   Android:layout_height="wrap_content"
   Android:button="@null"
   Android:drawableLeft="@drawable/livescore_btn_check" />
4
swordfish

Les drawables de CheckBox ne fonctionnaient pas du tout pour moi, Android:button et Android:background ont donné des résultats complètement erratiques et rien ne pouvait les réparer.

J'ai donc écrit ma propre "case à cocher personnalisée".

import Android.annotation.TargetApi;
import Android.content.Context;
import Android.content.res.TypedArray;
import Android.os.Parcel;
import Android.os.Parcelable;
import Android.util.AttributeSet;
import Android.util.TypedValue;
import Android.view.LayoutInflater;
import Android.view.View;
import Android.widget.ImageView;
import Android.widget.LinearLayout;

import org.Apache.commons.lang3.StringUtils;

import butterknife.Bind;
import butterknife.ButterKnife;
import com.example.myapp.R;

/**
 * Created by Zhuinden on 2015.12.02..
 */
public class CustomCheckbox
        extends LinearLayout
        implements View.OnClickListener {
    public CustomCheckbox(Context context) {
        super(context);
        init(null, -1);
    }

    public CustomCheckbox(Context context, AttributeSet attrs) {
        super(context, attrs);
        init(attrs, -1);
    }

    @TargetApi(11)
    public CustomCheckbox(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        init(attrs, defStyleAttr);
    }

    @TargetApi(21)
    public CustomCheckbox(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
        super(context, attrs, defStyleAttr, defStyleRes);
        init(attrs, defStyleAttr);
    }

    private void init(AttributeSet attributeSet, int defStyle) {
        TypedArray a = null;
        if(defStyle != -1) {
            a = getContext().obtainStyledAttributes(attributeSet, R.styleable.CustomCheckbox, defStyle, 0);
        } else {
            a = getContext().obtainStyledAttributes(attributeSet, R.styleable.CustomCheckbox);
        }
        defImageRes = a.getResourceId(0, 0);
        checkedImageRes = a.getResourceId(1, 0);
        checked = a.getBoolean(2, false);
        typeface = a.getString(3);
        if(StringUtils.isEmpty(typeface)) {
            typeface = "Oswald-Book.otf";
        }
        text = a.getString(4);
        inactiveTextcolor = a.getInteger(5, Android.R.color.black);
        activeTextcolor = a.getInteger(6, Android.R.color.red);
        textsize = a.getDimensionPixelSize(7, 0);
        a.recycle();
        setOnClickListener(this);
        if(!isInEditMode()) {
            LayoutInflater.from(getContext()).inflate(R.layout.view_custom_checkbox, this, true);
            ButterKnife.bind(this);
            imageView.setImageResource(checked ? checkedImageRes : defImageRes);
            typefaceTextView.setTypeface(typeface);
            if(!StringUtils.isEmpty(text)) {
                typefaceTextView.setText(text);
            }
            if(textsize != 0) {
                typefaceTextView.setTextSize(TypedValue.COMPLEX_UNIT_PX, textsize);
            } else {
                typefaceTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 12);
            }
        }
    }

    boolean checked;
    int defImageRes;
    int checkedImageRes;
    String typeface;
    String text;
    int inactiveTextcolor;
    int activeTextcolor;
    int textsize;

    OnCheckedChangeListener onCheckedChangeListener;

    @Bind(R.id.custom_checkbox_imageview)
    ImageView imageView;

    @Bind(R.id.custom_checkbox_text)
    TypefaceTextView typefaceTextView;

    @Override
    protected void onFinishInflate() {
        super.onFinishInflate();
    }

    @Override
    public void onClick(View v) {
        checked = !checked;
        imageView.setImageResource(checked ? checkedImageRes : defImageRes);
        typefaceTextView.setTextColor(checked ? activeTextcolor : inactiveTextcolor);
        onCheckedChangeListener.onCheckedChanged(this, checked);
    }

    public void setOnCheckedChangeListener(OnCheckedChangeListener onCheckedChangeListener) {
        this.onCheckedChangeListener = onCheckedChangeListener;
    }

    public static interface OnCheckedChangeListener {
        void onCheckedChanged(View buttonView, boolean isChecked);
    }

    public boolean isChecked() {
        return checked;
    }

    public void setChecked(boolean checked) {
        this.checked = checked;
        imageView.setImageResource(checked ? checkedImageRes : defImageRes);
        typefaceTextView.setTextColor(checked ? activeTextcolor : inactiveTextcolor);
    }

    public void setTextColor(int color) {
        typefaceTextView.setTextColor(color);
    }



    @Override
    public Parcelable onSaveInstanceState() {
        //begin boilerplate code that allows parent classes to save state
        Parcelable superState = super.onSaveInstanceState();

        SavedState ss = new SavedState(superState);
        //end

        ss.checked = this.checked;
        ss.defImageRes = this.defImageRes;
        ss.checkedImageRes = this.checkedImageRes;
        ss.typeface = this.typeface;
        ss.text = this.text;
        ss.inactiveTextcolor = this.inactiveTextcolor;
        ss.activeTextcolor = this.activeTextcolor;
        ss.textsize = this.textsize;

        return ss;
    }

    @Override
    public void onRestoreInstanceState(Parcelable state) {
        //begin boilerplate code so parent classes can restore state
        if(!(state instanceof SavedState)) {
            super.onRestoreInstanceState(state);
            return;
        }

        SavedState ss = (SavedState) state;
        super.onRestoreInstanceState(ss.getSuperState());
        //end

        this.checked = ss.checked;
        this.defImageRes = ss.defImageRes;
        this.checkedImageRes = ss.checkedImageRes;
        this.typeface = ss.typeface;
        this.text = ss.text;
        this.inactiveTextcolor = ss.inactiveTextcolor;
        this.activeTextcolor = ss.activeTextcolor;
        this.textsize = ss.textsize;
    }

    static class SavedState
            extends BaseSavedState {
        boolean checked;
        int defImageRes;
        int checkedImageRes;
        String typeface;
        String text;
        int inactiveTextcolor;
        int activeTextcolor;
        int textsize;

        SavedState(Parcelable superState) {
            super(superState);
        }

        private SavedState(Parcel in) {
            super(in);
            this.checked = in.readByte() > 0;
            this.defImageRes = in.readInt();
            this.checkedImageRes = in.readInt();
            this.typeface = in.readString();
            this.text = in.readString();
            this.inactiveTextcolor = in.readInt();
            this.activeTextcolor = in.readInt();
            this.textsize = in.readInt();
        }

        @Override
        public void writeToParcel(Parcel out, int flags) {
            super.writeToParcel(out, flags);
            out.writeByte(this.checked ? (byte) 0x01 : (byte) 0x00);
            out.writeInt(this.defImageRes);
            out.writeInt(this.checkedImageRes);
            out.writeString(this.typeface);
            out.writeString(this.text);
            out.writeInt(this.inactiveTextcolor);
            out.writeInt(this.activeTextcolor);
            out.writeInt(this.textsize);
        }

        //required field that makes Parcelables from a Parcel
        public static final Parcelable.Creator<SavedState> CREATOR = new Parcelable.Creator<SavedState>() {
            public SavedState createFromParcel(Parcel in) {
                return new SavedState(in);
            }

            public SavedState[] newArray(int size) {
                return new SavedState[size];
            }
        };
    }
}

Utilisation du attrs.xml suivant

<resources
    <declare-styleable name="CustomCheckbox">
        <attr name="default_img" format="integer"/>
        <attr name="checked_img" format="integer"/>
        <attr name="checked" format="boolean"/>
        <attr name="chx_typeface" format="string"/>
        <attr name="text" format="string"/>
        <attr name="inactive_textcolor" format="integer"/>
        <attr name="active_textcolor" format="integer"/>
        <attr name="textsize" format="dimension"/>
    </declare-styleable>
</resources>

Avec la disposition view_custom_checkbox.xml suivante:

<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:Android="http://schemas.Android.com/apk/res/Android">
    <ImageView
        Android:id="@+id/custom_checkbox_imageview"
        Android:layout_width="@dimen/_15sdp"
        Android:layout_height="@dimen/_15sdp"
        />

    <com.example.TypefaceTextView
        Android:id="@+id/custom_checkbox_text"
        Android:layout_width="wrap_content"
        Android:layout_height="wrap_content"/>
</merge>

Et exemple:

                        <com.example.CustomCheckbox
                            Android:id="@+id/program_info_record_button"
                            Android:layout_width="wrap_content"
                            Android:layout_height="match_parent"
                            Android:layout_centerHorizontal="true"
                            Android:clickable="true"
                            Android:gravity="center"
                            app:default_img="@drawable/ic_recording_off"
                            app:checked_img="@drawable/ic_recording_on"
                            app:text="@string/record"
                            app:inactive_textcolor="@color/program_info_buttons_inactive"
                            app:active_textcolor="@color/active_color"
                            app:textsize="@dimen/programInfoButtonTextSize"
                            app:chx_typeface="SomeTypeface.otf"/>

Modifier si nécessaire.

2
EpicPandaForce

Essayez d'utiliser un calque linéaire avec une orientation horizontale au lieu de RelativeLayout. Utilisez également une épaisseur dans chaque disposition pour forcer les vues à utiliser la même largeur.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayoutxmlns:Android="http://schemas.Android.com/apk/res/Android"
          Android:orientation="horizontal"
          Android:layout_width="match_parent"
          Android:layout_height="match_parent">
<CheckBox Android:id="@+id/cbFalse"
          Android:weight="1"
          Android:layout_width="match_parent"
          Android:layout_height="wrap_content"
          Android:button="@drawable/custom_cb"
          Android:text="" />
<CheckBox Android:id="@+id/cbTrue"
          Android:weight="1"
          Android:layout_width="match_parent"
          Android:layout_height="wrap_content"
          Android:button="@drawable/custom_cb"
          Android:focusable="false"
          Android:checked="true"
          Android:layout_toRightOf="@id/cbFalse" />
<ImageView Android:id="@+id/imvTrue"
          Android:weight="1"
          Android:layout_width="match_parent"
          Android:layout_height="wrap_content"
          Android:src="@drawable/creditcard"
          Android:layout_toRightOf="@id/cbTrue" />

0