在开发过程中,发现了有时候即便是android:layout_width和android:layout_height都设置成了fill_parent,如下面示例中的paraTableLayout仍然没有全屏显示
<HorizontalScrollView android:layout_gravity="top" android:id="@id/horizontal" android:layout_width="fill_parent" android:layout_height="fill_parent" >
<TableLayout android:id="@id/paraTableLayout" android:background="#ff399999" android:layout_width="fill_parent" android:layout_height="fill_parent" />
</HorizontalScrollView>
解决办法是在HorizontalScrollView中添加android:fillViewport="true"即可
本文详细介绍了在Android开发中遇到布局未全屏显示的问题,通过添加android:fillViewport=true属性到HorizontalScrollView中,成功解决了此问题,并提供了实例代码演示。
1645

被折叠的 条评论
为什么被折叠?



