Android 表格布局中 控件高度不一致问题问题 5
表格中每行添加了一个TextView和一个RadioGroup,但是这两个控件高度不一致,导致界面很不好看。但是radioGroup又不能使用setHeight()来设置...
表格中每行添加了一个TextView和一个RadioGroup,但是这两个控件高度不一致,导致界面很不好看。但是radioGroup又不能使用setHeight()来设置高度,有什么解决的办法呢?
展开
2个回答
展开全部
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="你好" />
<RadioButton
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="5" />
</LinearLayout>这个就可以解决你问题
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="你好" />
<RadioButton
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="5" />
</LinearLayout>这个就可以解决你问题
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询