WebvView缩放不适用于android.support.v4.widget.NestedScrollView Android

时间:2016-02-25 11:29:34

标签: android webview zoom

我在Android中创建了浏览器,因为我使用 AppBarLayout NestedScrollView 滚动隐藏/显示标题。但是在NestedScrollView中添加webview后,有一个问题发生,即缩放被禁用。

我的xml代码是:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/main_content"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true" >

    <android.support.design.widget.CustomAppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fitsSystemWindows="true" >

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:layout_collapseMode="pin"
            app:layout_scrollFlags="scroll|enterAlways"
            app:contentInsetLeft="0dp"
            app:contentInsetStart="0dp" >

            <LinearLayout
                xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:background="@android:color/black"
                android:orientation="vertical"
                android:paddingTop="@dimen/statusbar_height" >

                <LinearLayout
                    xmlns:android="http://schemas.android.com/apk/res/android"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:orientation="vertical" >

                    <LinearLayout
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:gravity="center" >

                        <ImageView
                            android:id="@+id/favicon"
                            android:layout_width="32dp"
                            android:layout_height="32dp"
                            android:contentDescription="@string/favicon"
                            android:src="@drawable/favicon_default" />

                        <EditText
                            android:id="@+id/url"
                            android:layout_width="0dp"
                            android:layout_height="wrap_content"
                            android:layout_weight="1"
                            android:ems="10"
                            android:inputType="textUri"
                            android:selectAllOnFocus="true"
                            android:textColor="@android:color/white" >
                        </EditText>

                        <Button
                            android:id="@+id/goButton"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:onClick="go"
                            android:text="@string/go" />
                    </LinearLayout>                     
                </LinearLayout>
            </LinearLayout>
        </android.support.v7.widget.Toolbar>
    </android.support.design.widget.CustomAppBarLayout>

    <android.support.v4.widget.NestedScrollView
        android:id="@+id/scrollWeb"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior" >

        <WebView
            android:id="@+id/webView"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    </android.support.v4.widget.NestedScrollView>

</android.support.design.widget.CoordinatorLayout>

缩放WebView代码:

webview.getSettings().setJavaScriptEnabled(true);
webview.getSettings().setBuiltInZoomControls(true);

感谢。

0 个答案:

没有答案