Android webview 放大相对布局

发布于 2024-11-24 12:07:32 字数 741 浏览 1 评论 0原文

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

I have a RelativeLayout and there is a WebView inside it. After I zoom in and zoom out, my WebView isn't in center. When I include another view into my RelativeLayout I can't place the WebView in center.
Can anyone please suggest anything??
any help is appreciated

<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"/>    

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

手长情犹 2024-12-01 12:07:32

首先,RelativeLayout 中不需要 orientation 标签。另一件事..您是否尝试将布局宽度和高度参数设置为 fill_parent 。我对此不太确定,但在某些情况下,我在视图对齐方面遇到了几乎相同的问题,只是因为我的 RelativeLayout 使用 wrap_content 而不是 fill_parent

First of all, you don't need orientation tag in RelativeLayout. And another thing..did you try to set your layout width and height params to fill_parent. I'm not really sure about it,but in some situations I had almost the same problem with alignments on my views just because my RelativeLayout was using wrap_content instead of fill_parent.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文