欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

Android 自定义View实现任意布局的RadioGroup效果

时间:2020-10-14 10:04:00|栏目:Android代码|点击:

前言

RadioGroup是继承LinearLayout,只支持横向或者竖向两种布局。所以在某些情况,比如多行多列布局,RadioGroup就并不适用 。

本篇文章通过继承RelativeLayout实现自定义RadioGroup,实现RadioButton的任意布局。效果图如下:

在这里插入图片描述

代码(RelativeRadioGroup)

/**
 * Author : BlackHao
 * Time : 2018/10/26 10:46
 * Description : 自定义 RadioGroup
 */
public class RelativeRadioGroup extends RelativeLayout implements CompoundButton.OnCheckedChangeListener {
  private int checkId = -1;
  private CompoundButton.OnCheckedChangeListener mChildOnCheckedChangeListener;
  public RelativeRadioGroup(Context context) {
    super(context);
  }
  public RelativeRadioGroup(Context context, AttributeSet attrs) {
    super(context, attrs);
  }
  public RelativeRadioGroup(Context context, AttributeSet attrs, int defStyleAttr) {
    super(context, attrs, defStyleAttr);
  }
  @Override
  protected void onLayout(boolean changed, int l, int t, int r, int b) {
    super.onLayout(changed, l, t, r, b);
    //添加监听
    for (int i = 0; i < getChildCount(); i++) {
      View v = getChildAt(i);
      if (v instanceof RadioButton && !(v instanceof CompoundButton.OnCheckedChangeListener)) {
        ((RadioButton) v).setOnCheckedChangeListener(this);
      }
    }
  }
  @Override
  public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
    setCheck(buttonView.getId(), isChecked);
  }
  public void check(@IdRes int checkId) {
    if (checkId == -1 || this.checkId == checkId) {
      return;
    }
    setCheck(checkId, true);
  }
  public void clearCheck() {
    setCheck(-1, false);
  }
  public int getCheckedRadioButtonId() {
    return this.checkId;
  }
  /**
   * 设置选中状态
   */
  private void setCheck(@IdRes int checkId, boolean isChecked) {
    if (checkId != -1 && this.checkId == checkId) {
      return;
    }
    if (checkId != -1) {
      CompoundButton view = (CompoundButton) findViewById(checkId);
      //未选中的RadioButton被选中
      if (checkId != this.checkId && isChecked) {
        this.checkId = checkId;
        if (mChildOnCheckedChangeListener != null) {
          mChildOnCheckedChangeListener.onCheckedChanged(view, true);
        }
        //某个RadioButton被选中,将其他的改为未选中
        for (int i = 0; i < getChildCount(); i++) {
          View v = getChildAt(i);
          if (v instanceof RadioButton && v.getId() != checkId) {
            ((RadioButton) v).setChecked(false);
          } else if (v instanceof RadioButton && v.getId() == checkId) {
            ((RadioButton) v).setChecked(true);
          }
        }
      }
      //被选中的RadioButton被取消选中
      if (checkId == this.checkId && !isChecked) {
        this.checkId = checkId;
        if (mChildOnCheckedChangeListener != null) {
          mChildOnCheckedChangeListener.onCheckedChanged(view, false);
        }
      }
    } else {
      //清空所有选择
      if (this.checkId != -1) {
        this.checkId = -1;
        CompoundButton view = (CompoundButton) findViewById(this.checkId);
        //将选中的置为未选中
        if (view instanceof RadioButton) {
          view.setChecked(false);
        }
      }
    }
  }
  public void setOnCheckedChangeListener(CompoundButton.OnCheckedChangeListener mChildOnCheckedChangeListener) {
    this.mChildOnCheckedChangeListener = mChildOnCheckedChangeListener;
  }
}

代码并没有太多,也很容易理解。有什么不明白的可以留言。

1、下载地址 : https://github.com/LuoChen-Hao/BlackHaoCustomView

总结

上一篇:Android App中使用ViewPager实现滑动分页的要点解析

栏    目:Android代码

下一篇:Android 使用jQuery实现item点击显示或隐藏的特效的示例

本文标题:Android 自定义View实现任意布局的RadioGroup效果

本文地址:http://www.codeinn.net/misctech/11013.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有