Android:Horizo​​ntalScrollView包装它的孩子?

时间:2012-05-14 14:31:29

标签: android

我有Horizo​​ntalScrollView和RelativeLayout作为孩子。这是我的xml文件:

<?xml version="1.0" encoding="utf-8"?>
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#ff00ff"
    android:scrollbars="none">

<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#ffffff" >
</RelativeLayout>

 </HorizontalScrollView>

输出是粉红色......但我需要白色...为什么相对布局没有填充其父级?

截图: enter image description here

带按钮的屏幕截图:enter image description here

1 个答案:

答案 0 :(得分:0)

正如您所看到的,当您放入按钮时,您与滚动视图不匹配。尝试使用LinearLayout作为您的父级,然后将滚动视图作为具有match_parent的子项,然后将其他布局作为滚动视图的子项添加match_parent