在相对布局中,在两个ScrollView之间添加空间的最佳方式是什么?你能给我举个例子吗?我一直在尝试使用填充物,但运气不好。
也许可以尝试使用边距而不是填充?我不能百分之百确定这是否能解决你的问题,但值得一试。
在第二个列表视图中使用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>
谢谢Deepak