Android webview 放大相对布局
我有一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,
RelativeLayout
中不需要orientation
标签。另一件事..您是否尝试将布局宽度和高度参数设置为fill_parent
。我对此不太确定,但在某些情况下,我在视图对齐方面遇到了几乎相同的问题,只是因为我的RelativeLayout
使用wrap_content
而不是fill_parent
。First of all, you don't need
orientation
tag inRelativeLayout
. And another thing..did you try to set your layout width and height params tofill_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 myRelativeLayout
was usingwrap_content
instead offill_parent
.