0

我对相当大的单选按钮文本有疑问。这些单选按钮的文本是动态生成的。不幸的是,有时会有大量文本,这会压低我布局中的其他对象。我虽然可以使单选按钮可滚动,那么这将消除此问题。我所说的可滚动的意思是,如果文本长度超过一定大小,单选按钮侧面会出现一个滚动条,这样用户就可以滚动单选按钮的文本,而不会改变我的 xml 文件其余部分的布局. 当我的意思是改变布局时,其他小部件会被进一步向下推,例如按钮。这是单选按钮的 xml 布局文件布局。

 <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="217dp"
        android:orientation="vertical" >

        <RadioGroup
            android:id="@+id/radioGroup1"
            android:layout_width="match_parent"
            android:layout_height="212dp"
            android:layout_weight="6.86" >

           <ScrollView
               android:id="@+id/ScrlView"
               android:layout_width="fill_parent"
               android:layout_height="78dp" >

            <RadioButton
                android:id="@+id/radio1"
                android:layout_width="match_parent"
                android:layout_height="79dp"
                android:checked="true"
                android:text="RadioButton"
                android:textSize="16dp" />
             </ScrollView>
            <ScrollView
                android:id="@+id/ScrlView"
                android:layout_width="fill_parent"
                android:layout_height="74dp" >

            <RadioButton
                android:id="@+id/radio2"
                android:layout_width="304dp"
                android:layout_height="75dp"
                android:text="RadioButton" />
              </ScrollView>

               <ScrollView android:id="@+id/ScrlView" android:layout_width="fill_parent" android:layout_height="fill_parent" >
            <RadioButton
                android:id="@+id/radio3"
                android:layout_width="300dp"
                android:layout_height="match_parent"
                android:text="RadioButton" />
            </ScrollView>

        </RadioGroup>
    </LinearLayout>

我检查了这个链接,虽然我可能会尝试为单选组添加滚动视图,所以如果单选问题太长,用户可以向下滚动。 如何在Android中垂直滚动活动

4

1 回答 1

0

试试 TableLayout 并告诉我们你得到了什么。将每个单选按钮放在其自己的表格行中。您还应该知道 setText() 还应该接受 SpannableStringBuilder 作为输入。这可以让您更好地控制文本的格式。最后,我认为您需要考虑一下设计。我的意思是有限制!如果你得到太多的文本,也许你不会显示所有的内容。看在线报纸。他们有同样的问题。不能一直显示一切。

于 2012-07-11T22:14:09.350 回答