Android webview放大相对布局

时间:2011-07-16 07:29:19

标签: android webview relativelayout zooming

我有一个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"/>    

1 个答案:

答案 0 :(得分:1)

首先,orientation中不需要RelativeLayout代码。还有一件事......你试着将你的布局宽度和高度参数设置为fill_parent。我对此并不十分肯定,但在某些情况下,由于我的RelativeLayout使用的是wrap_content而不是fill_parent,因此我对视图的对齐几乎存在同样的问题。