form中的单选框: var resultStartRadio = new Ext.form.RadioGroup({ id : 'resultStartRadio', name :"formState", style : "text-align:left", columns : 2, //colu ...
分类:
其他好文 时间:
2019-01-24 23:01:09
阅读次数:
151
执行效果如下: 获取 单选框的值: Ext.getCmp('ProcessPrice').getChecked()[0].boxLabel 得到的就是当前选中的 "显示" 值. 赋值: Ext.getCmp('ProcessPrice').setValue({RadioGroupName:Value ...
分类:
其他好文 时间:
2018-11-10 12:31:25
阅读次数:
308
1. android:gravity="fill_horizontal" : 文本在显示框中内容显示的位置 2.ToggleButton : 切换按钮 3.RadioGroup : 单选按钮 4.CheckBox : 多选复选框 5.spinner : 下拉列表 android:entries = ...
分类:
移动开发 时间:
2018-10-21 12:11:53
阅读次数:
195
一:UI设计1,Dialog(对话框)1-1:新建dialog_bay.xml,方法:右击“layout”->new->XML->LayoutXMLFile,如下图1-2:ui当中的重要的控件①,(RadioGroup)rg_type:单选按钮组①-1:(RadioButton)rb_zfb:支付宝①-2:(RadioButton)rb_wx:微信②,(Button)btn_ok
分类:
移动开发 时间:
2018-06-14 01:21:19
阅读次数:
275
rg.setOnCheckedChangeListener{_,checkedId -> when(checkedId){ R.id.radioButton ->{ Write[0]=1 Toast.makeText(this, radioButton.text.toString(), Toast. ...
分类:
其他好文 时间:
2018-05-15 00:37:10
阅读次数:
328
public class Main2Activity extends AppCompatActivity { private ListView lv; private RadioGroup rg; private FrameLayout fl;private String murl="http:// ...
分类:
其他好文 时间:
2018-05-03 22:11:19
阅读次数:
227
1.RadioGroup 一组单选框容器 2.ListView 3.GridView 4.ExpandableListView 可折叠列表 5.ScrollView 上下滚动条 6.HorizontalScrollView 左右滚动条 7.TabHost 分页 8.webView 内置网页 9.Se ...
分类:
移动开发 时间:
2018-04-13 22:31:38
阅读次数:
297
片断一: add hind@Overridepublic void onCheckedChanged(RadioGroup group, int checkedId) { switch (checkedId){ case R.id.rb_common_frame://常用框架 position = ...
分类:
其他好文 时间:
2018-02-25 00:09:57
阅读次数:
238
单项选择(RadioGroup) RadioGroup 是 LinearLayout 的子类,继承关系例如以下: android.view.ViewGroup android.widget.LinearLayout android.widget.RadioGroup RadioGroup 类方法 R ...
分类:
移动开发 时间:
2018-02-11 16:21:04
阅读次数:
256