Android UI布局中设置了fill_parenet仍然没有全屏的解决办法

在开发过程中,发现了有时候即便是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 UI布局中设置了fill_parenet仍然没有全屏的解决办法)