Tag: radio button

如何在Android中设置单选button

我有一个使用单选button的应用程序。 这个button的默认值是在main.xml文件中设置的,即: android:id="@+id/rb_sat1E" android:checked="true" 在Java文件中我有: final RadioButton radio1 = (RadioButton)findViewById(R.id.rb_sat1E); 我还在主Java文件中创build了一个“重置”button,并可以使用以下代码来重置TextView信息。 pos1_deg.setText("0.0"); 但是,我如何重置单选button? 我会认为这是类似的东西 radio1.setBoolean("TRUE"); 但是这根本不起作用。 任何帮助不胜感激。 谢谢。

在Android的RadioButton和它的标签之间添加边距?

是否可以添加一个RadioButton和标签之间的空间,而仍然使用Android的内置组件? 默认情况下,文本看起来有点</s> </s>。 <RadioButton android:id="@+id/rb1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="My Text"/> 我已经尝试了几件事情: 指定边距和填充似乎会在整个元素周围增加空间(button和文本在一起)。 这是有道理的,但没有做我所需要的。 创build一个自定义绘图通过XML指定图像的选中和未选中的状态,然后在每个图像的右侧添加一些额外的像素。 这应该工作,但现在你正在超出默认的用户界面。 (不是世界的尽头,但不是理想的) 将额外的空格添加到每个标签的开头。 Android似乎修剪了一个前导空格字符,如在“我的string”,但指定unicode U + 00A0,如“\ u00A0Mystring”诀窍。 这工作,但似乎有点肮脏。 有更好的解决scheme

如何使单选button看起来像一个切换button

我想要一组单选button看起来像一组切换button(但仍然像单选button一样)。 他们没有必要看起来像切换button。 我怎样才能做到这一点只有CSS和HTML? 编辑:我会满意使这个小圆圈消失,并改变风格时,button被选中/取消选中。

如何从不同的LinearLayouts分组RadioButton?

我想知道是否可以将每个单独的RadioButton分组在一个独特的RadioGroup保持相同的结构。 我的结构是这样的: LinearLayout_main LinearLayout_1 RadioButton1 LinearLayout_2 RadioButton2 LinearLayout_3 RadioButton3 正如你所看到的,现在每个RadioButton都是不同的LinearLayout的子LinearLayout 。 我尝试使用下面的结构,但它不工作: radioGroup中 LinearLayout_main LinearLayout_1 RadioButton1 LinearLayout_2 RadioButton2 LinearLayout_3 RadioButton3

如何设置单选button作为Android的radiogroup中的默认值

我已经创build了RadioGroup和RadioButtondynamic如下 RadioGroup radioGroup = new RadioGroup(context); RadioButton radioBtn1 = new RadioButton(context); RadioButton radioBtn2 = new RadioButton(context); RadioButton radioBtn3 = new RadioButton(context); radioBtn1.setText("Less"); radioBtn2.setText("Normal"); radioBtn3.setText("More"); radioBtn2.setChecked(true); radioGroup.addView(radioBtn1); radioGroup.addView(radioBtn2); radioGroup.addView(radioBtn3); 这里一步radioBtn2.setChecked(true); 导致radioBtn2总是被检查。 这意味着我不能通过检查其他两个单选button( radioBtn1 , radioBtn3 )来取消选中radioBtn2 。 我想让RadioGroup只能检查一个单选button(现在可以一次检查两个单选button)。 我怎么解决这个问题?

ASP.NET MVC是/否强烈绑定模型MVC的单选button

有谁知道如何将一个是/否单选button绑定到ASP.NET MVC中强types模型的布尔属性。 模型 public class MyClass { public bool Blah { get; set; } } 视图 <%@ Page Title="blah" Inherits="MyClass"%> <dd> <%= Html.RadioButton("blah", Model.blah) %> Yes <%= Html.RadioButton("blah", Model.blah) %> No </dd> 谢谢 解: 感谢Brian的指导,但这与他写的相反。 如此 – <%@ Page Title="blah" Inherits="MyClass"%> <dd> <%= Html.RadioButton("blah", !Model.blah) %> Yes <%= Html.RadioButton("blah", Model.blah) %> No </dd>

我怎么知道哪个单选button是通过jQueryselect的?

我有两个单选button,并希望发布所选的一个值。 我怎样才能得到与jQuery的价值? 我可以像这样得到他们所有的人: $("form :radio") 我如何知道select哪一个?

RadioGroup有两个有10个RadioButton的列

我有一个RadioGroup ,我想alignmentbutton在两列和五行,我无法实现它。 我已经尝试过的事情: RelativeLayout – > RadioGroup外部 – > RadioGroup内部。 所有RadioButtons被选中,但我只想要select一个。 RadioGroup :方向 跨度,stretchcolumns TableRow TableLayout 请让我知道如何创build一个RadioGroup并有两列和许多RadioButtons内。

ANDROID – ExpandableListView

我试图找出如何build立一个包含(许多)的视图: PARENT1(可检查,可扩展) CHILD1(电台button) CHILD2(电台button) … PARENT2(可检查,可扩展) CHILD1(可检查) CHILD2(可检查) … 问题是,父母必须是可检查的,并且基于孩子必须改变图标。 有人可以指出我正确的方向,因为从我发现什么似乎没有为我工作。

如何在Android的RadioButton上设置OnClickListener?

RadioGroup有两个RadioButton 。 我想在这些RadioButton上设置OnClickListener 。 根据单击哪个RadioButtonbutton,我想更改EditText的文本。 我怎样才能做到这一点?