image.png 目录 单选框组(RadioGroup) 单选框组,顾名思义.只能选择其中的一项. android中使用RadioGroup表示....<RadioGroup android:id="@+id/radioGroup" android:layout_width="wrap_content"...; import android.widget.TextView; public class MainActivity extends AppCompatActivity { RadioGroup...rg; TextView show; @Override protected void onCreate(Bundle savedInstanceState) {...)findViewById(R.id.radioGroup); //获取文本框 show = (TextView)findViewById(R.id.TextView);
--定义一组单选按钮--> <RadioGroup android:id="@+id/rg" android:orientation="horizontal...radioGroup01 ; TextView textView01 ; TextView textView02 ; Button button01 ; CheckBox...= (RadioGroup) findViewById(R.id.rg); textView01 = (TextView) findViewById(R.id.show_sex);...textView02 = (TextView) findViewById(R.id.show_color); checkBox01 = (CheckBox) findViewById(...public void onCheckedChanged(RadioGroup group, int checkedId) { //根据用户勾选信息改变tip字符串的值
参考示例程序:RadioGroup1(ApiDemo=>Views=>Radio Group) 源代码:com/example/android/apis/view/RadioGroup1.java...此程序使用 RadioGroup 将几个单选按钮组织在一起,RadioGroup 的扩展关系如下: => android.view.View => android.view.ViewGroup...使用 RadioGroup 组成一个单选列表,需要将 RadioButton 放置在一个 RadioGroup 中。...根据扩展关系RadioGroup本身即是ViewGroup,也是LinearLayout,因此在RadioGroup中也可以包含RadioButton之外的其他控件。...textView = new TextView(this); textView.setText("Text View " + i); LinearLayout.LayoutParams
--定义一组单选按钮-- <RadioGroup android:id="@+id/rg" android:orientation="horizontal"...radioGroup01 ; TextView textView01 ; TextView textView02 ; Button button01 ; CheckBox checkBox01...= (RadioGroup) findViewById(R.id.rg); textView01 = (TextView) findViewById(R.id.show_sex); textView02....setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() { @Override public void...onCheckedChanged(RadioGroup group, int checkedId) { //根据用户勾选信息改变tip字符串的值 String tip
其下面可以横着或者竖着挂几个RadioButton,也可以挂载其他控件(如TextView)。...RadioGroup的相应事件一般不由下面的RadioButton响应,而是直接由RadioGroup响应。...android:layout_height="match_parent" tools:context=".RadioGroupActivity" android:orientation="vertical" <TextView...<TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize...<TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize
效果图如下(下面的tabhost和上面的bar不属于这次的内容,这个是我做的一个应用程序框架的一部分,有需要的或者想研究研究的可以私下联系),主要是讲解中间的内容怎么实现,即点击上面的RadioGroup...1.首先在主界面的xml中添加一个RadioGroup,里面添加三个RadioButton即可 <RadioGroup android:id="@+id/radioGroup1" style="...> 其中 android:background="@drawable/rounded_edittext" 这一句是给这个RadioGroup添加一个带圆角的边框 rounded_edittext.xml...(重要)在主布局文件中添加Fragment的载体,比如一个framlayout,负责承载fragment 在上面的RadioGroup的布局下增加: <FrameLayout android:id... transaction.commit(); } private void setupWidgets() { mRadioGroup = (RadioGroup
layout_marginTop="17dp" android:text="@string/hello_world" / <TextView android:id="@+id/textView1...android:id="@+id/radioGroup1" android:layout_width="wrap_content" android:layout_height=...<TextView android:id="@+id/TextView01" android:layout_width="wrap_content" android:layout_height...; import android.widget.RadioGroup.OnCheckedChangeListener; import android.widget.Toast; public class...) this.findViewById(R.id.radioGroup1); sex1=(RadioButton) this.findViewById(R.id.radio0); sex2
文本控件 显示富文本(URL、不同大小、字体、颜色的文本) 在TextView中预定义了一些类似HTML标签(不区分大小写),通过这些标签,我们可以使TextView控件显示不同的颜色、大小、字体的文字...不能将带有标签的字符串直接使用TextView.setText()的方法进行设置,需要使用Html.fromHtml()将带有标签的字符串转换成CharSequence对象,然后再使用TextView.setText...textView1 = (TextView) findViewById(R.id.id_tv_richText1); TextView textView2 = (TextView) findViewById...例如: TextView textView = (TextView)findViewById(R.id.textView); String text = ""; // 第一步:将字符串转换成为...textView = (TextView) findViewById(R.id.id_tv_scroll); textView.setMovementMethod(ScrollingMovementMethod.getInstance
; import android.widget.TextView; import android.widget.Toast; public class Activity01 extends Activity...{ private Button btn_chooseGender; private RadioGroup radioGroup1; private TextView tv_answer;...= (RadioGroup) findViewById(R.id.radioGroup1); tv_answer = (TextView) findViewById(R.id.tv_answer)...layout_height="match_parent" android:background="@android:color/black" android:orientation="vertical" <TextView...android:layout_height="wrap_content" android:text="选择性别" android:textColor="#FFFFFF" / / <TextView
" android:layout_height="wrap_content" android:layout_marginTop="100dp" > <TextView...android:id="@+id/textView1" android:layout_width="wrap_content"...android:id="@+id/textView2" android:layout_width="wrap_content"...android:id="@+id/textView3" android:layout_width="wrap_content"...) findViewById(R.id.radioGroup1); rg2 = (RadioGroup) findViewById(R.id.radioGroup2);
单选框 xml中设置放方式 <RadioGroup android:id="@+id/radiogroup" android:layout_width="match_parent...需要设置一个id,从而对其进行监听,每一个RadioButton都需要设置id,方便获取它的值 为RadioGroup值改变时添加一个监听器 RadioGroup radgroup = (RadioGroup...) findViewById(R.id.radiogroup); //第一种获得单选按钮值的方法 //为radioGroup设置一个监听器:setOnCheckedChanged...radgroup = (RadioGroup) findViewById(R.id.radiogroup); @Override public void...--该TextView仅作展示信息--> <TextView android:id="@+id/txt_cur" android:layout_width="wrap_content
layout_height="match_parent" android:orientation="vertical" android:padding="@dimen/dialog" <TextView...text="@string/choice1" android:textColor="@color/green" android:textSize="@dimen/text"/ <RadioGroup...<TextView android:layout_width="match_parent" android:layout_height="wrap_content" android...radioGroup1 = (RadioGroup) self.findViewById(R.id.radiogroup1); final RadioGroup radioGroup2 = (RadioGroup...) self.findViewById(R.id.radiogroup2); new AlertDialog.Builder(MainPlan.this)//MainPlan是当前activity
如果移动端访问不佳或需要更好的阅读体验,欢迎使用 ==> Github 版 使用 RadioGroup 和 ViewPager 实现更加可定制的效果。...今天又有新图,不过设计师只考虑 iOS 平台的设计,拿到设计图发现 TabLayout + ViewPager 的套路实现起来很麻烦,考虑了下,为了方便,决定使用 RadioGroup + ViewPager...来实现,之所以使用 RadioGroup ,是因为它内部多个 RadioButton 的状态是互斥的,也就是只有一个是选中状态,不需要我们进行多余的处理。...状态监听 ViewPager 页面切换监听 实现 先看效果图: 思路 UI: 顶部是 RadioGroup ,内部包含两个 RadioButton RadioButton 需要自定义背景和文字...中 RadioButton 的选中状态 RadioGroup 设置 setOnCheckedChangeListener 监听,并在其中修改 ViewPager 的状态 实现 UI <LinearLayout
" / <RadioGroup android:id="@+id/radioGroup" android:layout_width="113dp" android:layout_height="64dp..." android:layout_width="match_parent" android:layout_height="wrap_content" android:text="非开源的" / </RadioGroup..." app:layout_constraintTop_toBottomOf="@+id/radioGroup" / <CheckBox android:id="@+id/cb2" android:layout_width...sorce; TextView et_on; RadioGroup rd; Button button; CheckBox checkBox1; CheckBox checkBox2; CheckBox...() { @Override public void onCheckedChanged(RadioGroup group, int checkedId) { //获取被选择的单选按钮 RadioButton
使用RadioButton必须和单选框RadioGroup一起使用,在RadioGroup中放置RadioButton,通过setOnCheckedChangeListener( )来响应按钮的事件;...activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context=".MainActivity" <TextView...android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content..."wrap_content" android:layout_alignTop="@+id/textView1" android:layout_marginLeft="21dp"...android:layout_toRightOf="@+id/textView1" android:orientation="horizontal" <RadioButton
分享给大家供大家参考,具体如下: 原理:定义四个RadioGroup,通过第一个RadioGroup的选择来控制其余几个radiogroup的显隐 布局: <?...match_parent" android:layout_height="match_parent" android:orientation="vertical" android:padding="20dp" <TextView...<TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="选择查询字段...radioGroup1 = (RadioGroup) self.findViewById(R.id.radiogroup1); final RadioGroup radioGroup2 = (RadioGroup...R.id.radiogroup3); final RadioGroup radioGroup4 = (RadioGroup) self.findViewById(R.id.radiogroup4); radioGroup1
TextView 文本框 TextView 继承于 View 1.1 常用属性 跑马灯效果: 识别链接效果: android:autoLink 属性用于设置 TextView 是否识别链接类型和设置可识别的链接类型...setScaleX(2.0f); 设置 TextView 行间距 Android TextView 默认显示中文时会比较紧凑,为了让每行保持的行间距,可以设置如下属性 如:setLineSpacing...Button 继承自 TextView ,所以可以 使用 TextView 的那些属性 2....在多个 RadioButton被 RadioGroup 包含的情况下,同一时刻只可以选择一个 RadioButton,并用 setOnCheckedChangeListener 来对 RadioGroup...//调用setOnCheckedChangeListener来对RadioGroup进行监听的代码 radiogroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener
A Custom TextView with trim text Download To add the ReadMoreTextView library to your Android Studio
checkBox1" 59 android:layout_marginTop="22dp" 60 android:text="单位性质" /> 61 62 <RadioGroup...63 android:id="@+id/radioGroup1" 64 android:layout_width="wrap_content" 65...86 android:layout_height="wrap_content" 87 android:text="股份制" /> 88 </RadioGroup...15 startActivity(intent); 16 } 17 }); 18 rdCompanyType=(RadioGroup...)findViewById(R.id.radioGroup1); 19 SharedPreferences sharedpre=getSharedPreferences(PREFERENCE_NAME
)[i]); //设置view View view = LayoutInflater.from(this).inflate(R.layout.tabs_foot, null); ((TextView...tv = (TextView) v.findViewById(R.id.foot_tv); ImageView iv = (ImageView) v.findViewById(R.id.foot_iv...现在来实现顶部导航栏,看了许多最后使用了RadioGroup+ViewPager来实现 首先是为第一个碎片设计一个xml布局:fm_one.xml <?...; import android.widget.RadioGroup.LayoutParams; import android.widget.RadioGroup.OnCheckedChangeListener...Bundle savedInstanceState) { View view = inflater.inflate(R.layout.fragment, container,false); ((TextView
领取专属 10元无门槛券
手把手带您无忧上云