相对布局中的滚动视图之间的空间

时间:2011-06-14 14:03:25

标签: android user-interface

在相对布局中在两个ScrollView之间添加空间的最佳方法是什么,你能举个例子吗?我一直在尝试使用填充物,运气不佳。

2 个答案:

答案 0 :(得分:2)

也许尝试使用保证金而不是填充?我不是百分百确定这是否能解决你的问题,但值得一试。

答案 1 :(得分:1)

在第二个列表视图中使用android:layout_below="@+id/ScrollView01"将其位置设置为第一个滚动视图的下方。还将android:layout_marginTop="50dip"设置为第二个滚动视图,以在第一个滚动视图和第二个滚动视图之间提供一些余量

尝试以下代码

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffffff">
    <ScrollView

        android:id="@+id/ScrollView01"
        android:layout_height="wrap_content"
        android:layout_width="fill_parent"
        android:background="#000000">
        <RadioGroup
            android:id="@+id/RadioGroup01"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">
            <RadioButton
                android:id="@+id/RadioButton01"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Radio Button....." />

        </RadioGroup>
    </ScrollView>
    <ScrollView

        android:id="@+id/ScrollView02"
        android:layout_height="wrap_content"
        android:layout_width="fill_parent"
        android:background="#000000"
        android:layout_below="@+id/ScrollView01"
        android:layout_marginTop="50dip">

        <RadioGroup
            android:id="@+id/RadioGroup01"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">
            <RadioButton
                android:id="@+id/RadioButton02"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Radio Button....." />
        </RadioGroup>
    </ScrollView>

</RelativeLayout>

由于 迪帕克