我在我的应用程序中使用webview
来获取问题和选项。我在问题的底部得到额外的空白区域。对于长篇问题,它工作正常,短长度问题底部会出现一些额外的空白区域。
我尝试过这段代码并将所有填充属性修改为0dp
mWebView.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY);
enter code here
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingRight="0dp"
android:paddingBottom="0dp"
android:paddingTop="0dp"
android:paddingLeft="0dp">
<WebView
android:id="@+id/myWebView"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
如何删除此空格。
答案 0 :(得分:0)
试试这个,
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/c1_cnxlayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/black"
android:orientation="vertical" >
<WebView
android:id="@+id/webView1"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
答案 1 :(得分:0)
如果您将&#34; layout_height&#34; 设置为&##,则WebView无法正确计算其高度始终 34; WRAP_CONTENT&#34; 强>
您应该使用&#34; match_parent&#34; 或特定值,例如&#34; 150dp&#34;
<WebView
android:id="@+id/myWebView"
android:layout_width="match_parent"
android:layout_height="match_parent"/>