ExpandableListViewを使用するほぼ完成したアプリがあり、子行ごとに1つのトグルボタンがあります。CheckBoxまたはToggleButtonをうまく使用できますが、基になるCompoundButtonはボタングラフィック(wtf?)の水平方向の中央揃えをサポートしていません。だから私は自分で作ったのですが、どういうわけかそれを使うとリストビューでクリックできなくなります。
通常のレイアウトでは、カスタム複合ボタンは完全に機能します。
いくつかの魔法の呪文が欠けているように見えますが、それがどうなるかはよくわかりません。洞察に感謝します。
package net.shangtai.listener;
import android.widget.CompoundButton;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.drawable.Drawable;
import android.util.AttributeSet;
import android.view.Gravity;
class ImageToggle extends CompoundButton {
private Drawable buttonDrawable;
public ImageToggle(Context context) {
super(context, null);
}
public ImageToggle(Context context, AttributeSet attrs) {
super(context, attrs, 0);
}
public ImageToggle(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
@Override
public void setButtonDrawable(Drawable d) {
super.setButtonDrawable(d);
buttonDrawable=d;
}
@Override
protected void onDraw(Canvas canvas) {
if (buttonDrawable != null) {
final int gravity = getGravity();
final int height = buttonDrawable.getIntrinsicHeight();
final int width = buttonDrawable.getIntrinsicWidth();
int top=0;
int bottom=0;
int left=getWidth();
int right=getHeight();
switch (gravity) {
case Gravity.TOP:
top=0;
bottom=height;
break;
case Gravity.BOTTOM:
top=getHeight() - height;
bottom=0;
break;
case Gravity.CENTER_VERTICAL:
top=(getHeight() - height)/2;
bottom=top+height;
break;
case Gravity.LEFT:
left=0;
right=width;
break;
case Gravity.RIGHT:
left=getWidth() - width;
right=0;
break;
case Gravity.CENTER_HORIZONTAL:
left=(getWidth() - width)/2;
right=left+width;
break;
case Gravity.CENTER:
left=(getWidth() - width)/2;
right=left+width;
top=(getHeight() - height)/2;
bottom=top+height;
break;
}
buttonDrawable.setBounds(left, top, right, bottom);
buttonDrawable.draw(canvas);
}
}
}