当softinput键盘打开时,webview输入字段将被隐藏

时间:2016-07-19 14:02:20

标签: android webview

我在网上搜索并尝试了,
android:windowSoftInputMode="adjustResize|stateHidden" android:windowSoftInputMode="adjustResize"
android:windowSoftInputMode="adjustPan"

我没有完整的窗口主题,仍然是softinput键盘覆盖了一半的文本域。

这是我的代码,

content.xml中

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="0dp"
    android:paddingLeft="0dp"
    android:paddingRight="0dp"
    android:paddingTop="0dp"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context="com.quads.quanta.quanta"
    tools:showIn="@layout/activity_quanta">

    <WebView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/content_quanta_webview"
        android:windowSoftInputMode="adjustResize"
        />
</RelativeLayout>

的manifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.quads.quanta">
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity
            android:name=".quanta"
            android:label="@string/app_name"
            android:configChanges="orientation|screenSize"
            android:windowSoftInputMode="adjustResize|stateHidden"
            android:theme="@style/AppTheme.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
    <uses-permission android:name="android.permission.INTERNET" />
</manifest>

我的网站中的滚动条不在应用中。怎么解决? example

0 个答案:

没有答案