图像不再使用 Android 7 在 CustomRadioImageButton 上绘制

Image no longer drawing on CustomRadioImageButton with Android 7

我已经使用这个分段控制器库很长时间了,但是在 Android 7 下,图像不再绘制在单选按钮上...有没有人知道这里面发生了什么变化Android 的版本导致它停止工作?

segmentedcontrollerradiobutton 已绘制,但按钮上应有的图像不再绘制。

正在使用的库:

https://github.com/vinc3m1/android-segmentedradiobutton

package com.makeramen.segmented;

import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.drawable.Drawable;
import android.util.AttributeSet;
import android.widget.RadioButton;

public class CenteredRadioImageButton extends RadioButton {

Drawable image;

public CenteredRadioImageButton(Context context, AttributeSet attrs) {
    super(context, attrs);
    TypedArray a = context.obtainStyledAttributes(attrs, com.makeramen.segmented.R.styleable.CompoundButton, 0, 0);
    image = a.getDrawable(1);
    setButtonDrawable(android.R.color.transparent);
    a.recycle();
}

@Override
protected void onDraw(Canvas canvas) {
    super.onDraw(canvas);

    if (image != null) {
        image.setState(getDrawableState());

        // scale image to fit inside button

        int imgHeight = image.getIntrinsicHeight();
        int imgWidth = image.getIntrinsicWidth();
        int btnWidth = getWidth();
        int btnHeight = getHeight();
        float scale;

        if (imgWidth <= btnWidth && imgHeight <= btnHeight) {
            scale = 1.0f;
        } else {
            scale = Math.min((float) btnWidth / (float) imgWidth,
                    (float) btnHeight / (float) imgHeight);
        }


        int dx = (int) ((btnWidth - imgWidth * scale) * 0.5f + 0.5f);
        int dy = (int) ((btnHeight - imgHeight * scale) * 0.5f + 0.5f);

        image.setBounds(dx, dy, (int)(dx + imgWidth * scale), (int)(dy + imgHeight * scale));

        image.draw(canvas);
    }
}
}

在运行时 Android7 中,IMAGE 值实际上始终为 NULL。

 <com.makeramen.segmented.CenteredRadioImageButton
                    android:id="@+id/myButton"
                    android:layout_width="40dip"
                    android:layout_height="50dip"
                    android:button="@drawable/myImage"
                    android:clickable="true"
                    android:minWidth="40dip"
                    android:minHeight="33dip"
                    android:focusable="true">
                    </com.makeramen.segmented.CenteredRadioImageButton>

明白了,7 中发生了一些变化...TypedArray 中的索引从 1 变为 0...修改后解决了问题。