我有一个RelativeLayout,里面有一个WebView。放大和缩小后,我的WebView不在中心。当我将另一个视图包含到我的RelativeLayout中时,我无法将WebView置于中心位置。 任何人都可以建议吗? 任何帮助表示赞赏
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fullscreen_image_parrent"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/black">
<WebView
android:id="@+id/webview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true">
</WebView>
<include layout="@layout/full_image_controls"/>
答案 0 :(得分:1)
首先,orientation
中不需要RelativeLayout
代码。还有一件事......你试着将你的布局宽度和高度参数设置为fill_parent
。我对此并不十分肯定,但在某些情况下,由于我的RelativeLayout
使用的是wrap_content
而不是fill_parent
,因此我对视图的对齐几乎存在同样的问题。