0

我小时候有带 RelativeLayout 的 Horizo​​ntalScrollView。这是我的 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>

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

截屏: 在此处输入图像描述

带有按钮的屏幕截图:在此处输入图像描述

4

1 回答 1

0

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

于 2012-05-14T16:54:04.490 回答