android 中RadioGroup怎么实现横排按钮

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 中RadioGroup怎么实现横排按钮相关的知识,希望对你有一定的参考价值。

参考技术A 给RadioGroup加一个属性: android:orientation="horizontal" 这样就可以把里面的RadioButton横排了。本回答被提问者和网友采纳 参考技术B 在布局文件中,
给RadioGroup加一个属性: android:orientation="horizontal"
这样就可以把里面的RadioButton横排了。
参考技术C 你看说明书

Android 如何实现竖排文字显示

参考技术A package com.coolsoft.attributionreject.tools;

import android.content.Context;
import android.util.AttributeSet;
import android.widget.LinearLayout;
import android.widget.TextView;

public class VerticalTextView extends LinearLayout

public VerticalTextView(Context context, AttributeSet attrs)
super(context, attrs);
setOrientation(VERTICAL);
this.context=context;

private String text;
private Context context;
private int color;
private int size=15;

public VerticalTextView(Context context)
super(context);
setOrientation(VERTICAL);
this.context=context;


public void setText(String text)

this.text=text;
addText();


private void addText()

removeAllViews();
if(text!=null)

char[] chara=text.toCharArray();
for(int i=0;i<chara.length;i++)

System.out.println("什么情况------"+text);
TextView oneText=new TextView(context);
oneText.setTextColor(color);

oneText.setText(text.substring(i, i+1));
if(size>0)

oneText.setTextSize(size);

addView(oneText);




public void setTextColor(int color)

this.color=color;

public void setTextSize(int size)

this.size=size;



你也可以修改里边的字体大小的。最好字数不要多,这样的空间字数多了消耗比较的大。
在xml当中加入包名,这个应该知道吧。本回答被提问者和网友采纳
参考技术B 把控件宽度设置只能显示一个字的宽度

以上是关于android 中RadioGroup怎么实现横排按钮的主要内容,如果未能解决你的问题,请参考以下文章

Android中。如何用RadioButton设定一个4列12行的单选表格。

android如何实现代码控制RadioGroup中某一个按钮选中

android如何实现代码控制RadioGroup中某一个按钮选中

Android 谁有动态添加多个RadioGroup 并获取所有RadioGroup被选中的值的方法?

Android 中使用RadioGroup+Fragment实现底部导航栏的功能

Android实现RadioGroup之间的互斥且radioButton可以选择或取消