gpt4 book ai didi

java - Android WebView 宽度和高度

转载 作者:行者123 更新时间:2023-12-01 13:48:45 25 4
gpt4 key购买 nike

我制作了一个 WebView,但由于某种原因,边框没有填满整个屏幕。

<WebView
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true" />

有什么建议吗?

最佳答案

您的 Webview 上方可能有布局,例如线性、相对等。从该布局中删除所有属性,例如:

 android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"

试试这个:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >

<WebView
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />

希望这有帮助。

关于java - Android WebView 宽度和高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20136614/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com