我有HorizontalScrollView和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>
输出是粉红色......但我需要白色...为什么相对布局没有填充其父级?
截图:
带按钮的屏幕截图:
答案 0 :(得分:0)
正如您所看到的,当您放入按钮时,您与滚动视图不匹配。尝试使用LinearLayout
作为您的父级,然后将滚动视图作为具有match_parent
的子项,然后将其他布局作为滚动视图的子项添加match_parent
也