当前位置:   article > 正文

Android 自定义RadioButton实现

android button实现radiobutton

由于使用小米系统MIUI运行是RadioButton样式跟google Android API自定义的不一样,则我们可以定义任何想要的东东。没有做不到,只有想不到

  • Android 自定义RadioButton
  • Android 自定义RadioButton 实现文字上下左右方向的图片大小设置

单选项框RadioGroup

API

单选按钮是一种双状态的按钮,可以选择或不选中。在单选按钮没有被选中时,用户能够按下或点击来选中它。但是,与复选框相反,用户一旦选中就不能够取消选中(译者注:可以通过代码来控制,界面上点击的效果是一旦选中之后就不能取消选中了)。

多个单选按钮通常与RadioGroup同时使用。当一个单选组(RadioGroup)包含几个单选按钮时,选中其中一个的同时将取消其它选中的单选按钮

  • RadioGroup 的组事件.RadioGroup 可将各自不同的RadioButton ,设限于同一个Radio 按钮组,同一个RadioGroup 组里的按钮,只能做出单一选择(单选题).

通过Demo来了解---RPcalc

UI布局

activity_main.xml

  1. <EditText
  2. android:id="@+id/et_name"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:hint="请输入姓名" />
  6. <!--建立一个RadioGroup -->
  7. <RadioGroup
  8. android:id="@+id/rg_group"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:orientation="horizontal" >
  12. <!--第一个RadioButton -->
  13. <RadioButton
  14. android:id="@+id/rb_male"
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:layout_marginLeft="25dp"
  18. android:layout_weight="2"
  19. android:text="男" />
  20. <!--第二个RadioButton -->
  21. <RadioButton
  22. android:id="@+id/rb_female"
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:layout_marginLeft="25dp"
  26. android:layout_weight="2"
  27. android:text="女" />
  28. <!--第三个RadioButton -->
  29. <RadioButton
  30. android:id="@+id/rb_other"
  31. android:layout_width="wrap_content"
  32. android:layout_height="wrap_content"
  33. android:layout_marginLeft="25dp"
  34. android:layout_weight="2"
  35. android:text="人妖" />
  36. </RadioGroup>
  • 大致的UI布局,就是用到这些控件

MainActivity.java

  1. public class MainActivity extends ActionBarActivity {
  2. private EditText et_name;
  3. private RadioGroup rg_group;
  4. @Override
  5. protected void onCreate(Bundle savedInstanceState) {
  6. super.onCreate(savedInstanceState);
  7. setContentView(R.layout.activity_main);
  8. <!--找到我们关心的控件 -->
  9. et_name = (EditText) findViewById(R.id.et_name);
  10. rg_group = (RadioGroup) findViewById(R.id.rg_group);
  11. Button btn = (Button) findViewById(R.id.btn);
  12. <!--设置按钮点击事件--点击按钮,获取数据,跳转到ResultActivity页面 -->
  13. btn.setOnClickListener(new OnClickListener() {
  14. @Override
  15. public void onClick(View v) {
  16. <!--获取用户名 -->
  17. String name = et_name.getText().toString().trim();
  18. <!--判断用户名为空 -->
  19. if (TextUtils.isEmpty(name)) {
  20. Toast.makeText(getApplicationContext(), "用户名不能为空", Toast.LENGTH_LONG).show();
  21. return;
  22. }
  23. <!--判断选中的性别-->
  24. int checkedRadioButtonId = rg_group.getCheckedRadioButtonId();
  25. <!--判断具体选中的性别 -->
  26. int sex =0; //定义一个变量默认值为0 作用就是做一个标识
  27. switch (checkedRadioButtonId) {
  28. case R.id.rb_male: //选中的是男
  29. sex =1;
  30. break;
  31. case R.id.rb_female: //选中的是女
  32. sex =2;
  33. break;
  34. case R.id.rb_other: //选中的是人妖
  35. sex =3;
  36. break;
  37. }
  38. <!--判断性别 -->
  39. if (sex ==0) {
  40. Toast.makeText(getApplicationContext(), "请选性别", Toast.LENGTH_SHORT).show();
  41. return;
  42. }
  43. <!--跳转到ResultActivity--使用显示意图-->
  44. Intent intent = new Intent(MainActivity.this, ResultActiviy.class);
  45. <!--要把name和sex传递到结果页面 putExtra(里面可以传递各种类型) -->
  46. intent.putExtra("name", name);
  47. intent.putExtra("sex", sex);
  48. <!--开启Activity -->
  49. startActivity(intent);
  50. }
  51. });
  52. }
  53. }

效果图

奇怪的事情就发生了---在小米系统下的就变化了

效果图

  • 这可能是跟小米系统基于Android的MIUI系统有关,可是如果面临这种情况怎么办呢

两种方法思路

一、Android 自定义RadioButton 实现文字上下左右方向的图片大小设置

Button与Textview 我们只是把自定义的图片资源放在Textview的左边,并把Button设置为null来实现

2.设置drawable图像显示在文字的上下左右的位置,如果不想设置,则传递null参数。drawable图片的边界是其自身固定的边界范围。

3.left, top, right, bottom是对于文字上下左右方向的图片大小设置

  1. 常见方法是:在代码中动态设置图片大小。然后设置在布局上。
  1. <span style="font-size:18px;">
  2. mRadioButton.setCompoundDrawables(left, top, right, bottom);
  3. </span>

参数类型都是Drawable,分别是左,上,右,下四个方向要显示的Drawable图片我们查看setCompoundDrawables(left, top, right, bottom)方法:用次方法之前,需要用Drawable.setBounds()方法来为Drawable图片设置边界,即要显示的大小。

  1. 另一种常见方法是:
  1. <span style="font-size:18px;">
  2. setCompoundDrawablesWithIntrinsicBounds(drawableLeft, drawableTop, drawableRight, drawableBottom);
  3. </span>

进入源码查看该方法的具体实现:

  1. <span style="font-size:18px;">public void setCompoundDrawablesWithIntrinsicBounds(Drawable left, Drawable top,
  2. Drawable right, Drawable bottom) {
  3. if (left != null) {
  4. left.setBounds(0, 0, left.getIntrinsicWidth(), left.getIntrinsicHeight());
  5. }
  6. if (right != null) {
  7. right.setBounds(0, 0, right.getIntrinsicWidth(), right.getIntrinsicHeight());
  8. }
  9. if (top != null) {
  10. top.setBounds(0, 0, top.getIntrinsicWidth(), top.getIntrinsicHeight());
  11. }
  12. if (bottom != null) {
  13. bottom.setBounds(0, 0, bottom.getIntrinsicWidth(), bottom.getIntrinsicHeight());
  14. }
  15. setCompoundDrawables(left, top, right, bottom);
  16. }</span>
  • 在Demo中应用是这样的--MainActivity.java
  1. et_name = (EditText) findViewById(R.id.et_name);
  2. rg_group = (RadioGroup) findViewById(R.id.rg_group);
  3. Drawable ds = getResources().getDrawable(R.layout.item);
  4. setCompoundDrawablesWithIntrinsicBounds(rb_female,ds);
  5. //自定义setCompoundDrawablesWithIntrinsicBounds 替换RadioButton图片
  6. public void setCompoundDrawablesWithIntrinsicBounds(RadioButton rb, Drawable left) {
  7. if (left != null) {
  8. left.setBounds(0, 0, left.getIntrinsicWidth(), left.getIntrinsicHeight());
  9. }
  10. rb.setCompoundDrawables(left, null, null, null); //位置是相对应文字来决定的
  11. }

原来这个方法,同样调用了setCompoundDrawables(left, top, right, bottom)方法,并在调用之前,给传入的图片设置了边界范围,即图片自身的大小。再看这个方法的注释:设置drawable图像显示在文字的上下左右的位置,如果不想设置,则传递null参数。drawable图片的边界是其自身固定的边界范围。

二、Android 自定义RadioButton

这个是把自定义的替换掉系统自带的,加载自己的来实现

  1. 第一步,自定义RadioButton图片Drawable---item.xml
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <selector xmlns:android="http://schemas.android.com/apk/res/android">
  3. <item android:state_checked="false" android:drawable="@drawable/dx_checkbox_off" />
  4. <item android:state_checked="true" android:drawable="@drawable/dx_checkbox_on" />
  5. </selector>

2.第二步,MainActivity.xml中添加下面代码

  1. RadioButton rb_female = (RadioButton) findViewById(R.id.rb_female);
  2. RadioButton rb_male = (RadioButton) findViewById(R.id.rb_male);
  3. RadioButton rb_other = (RadioButton) findViewById(R.id.rb_other);
  4. //这个是把自定义的替换掉系统自带的,加载自己的
  5. rb_male.setButtonDrawable(R.layout.item);
  6. rb_female.setButtonDrawable(R.layout.item);
  7. rb_other.setButtonDrawable(R.layout.item);

效果图

欢迎交流,进入博客网站:www.wangsong520.com进行留言交流,并且里面有更多知识分享!

转载于:https://www.cnblogs.com/stephenhuashao/p/5630459.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/寸_铁/article/detail/865857
推荐阅读
相关标签
  

闽ICP备14008679号