我在缩小WebView的内容方面遇到了问题,而WebView的内容对于默认比例来说太大了。
我正在为720p Android电视开发,我遵循了所有可能的建议:
webView = (WebView) findViewById(R.id.main_wv);
webView.setInitialScale(1);
webView.getSettings().setUserAgentString(newUA);
webview.getSettings().setLoadWithOverviewMode(true);
webView.getSettings().setUseWideViewPort(true);
webView.setScrollBarStyle(WebView.SCROLLBARS_OUTSIDE_OVERLAY);
webView.setScrollbarFadingEnabled(false);
webView.getSettings().setJavaScriptEnabled(true);
webView.setPadding(0, 0, 0, 0);
这是我目前的设置,我尝试启用其中一些而不是其他但仍然没有变化。
这是我的XML:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<WebView
android:id="@+id/main_wv"
android:layout_width="match_parent"
android:layout_height="match_parent"></WebView>
</android.support.v7.widget.LinearLayoutCompat>
我犯了什么错误,还是某种邪恶的错误?
我只想尽可能缩小,以便能够放入一个巨大的图形,否则将无法完全显示。
EDIT1 :我尝试将android.support.v7.widget.LinearLayoutCompat
更改为FrameLayout
。什么都没有改变。
EDIT2 :我还尝试了webView.zoomBy(0.02f)
,但仍然没有。
答案 0 :(得分:0)
您可以尝试将其添加到WebView.
webview.getSettings().setUseWideViewPort(true);
webview.getSettings().setLoadWithOverviewMode(true);
尝试使用Frame Layout
中的XML
。
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<WebView
android:id="@+id/webView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="true"
android:focusable="true"
android:focusableInTouchMode="true"
/>
</FrameLayout>