我试图在我的Activity中使用WebView来显示标准登录页面,但似乎键盘总是覆盖页面的下半部分(并且它不允许你#&# 39;滚动'未覆盖的部分,就像你期望的那样。)
查看问题,我已经尝试过常规的
android:windowSoftInputMode="adjustResize"
然而,这似乎并不奏效。 (我也试过adjustPan)
Now I found this issue,但我看到Lollipop中的应用会滚动浏览网页浏览器,就像您预期的那样。
有什么想法吗?我很难过。
编辑:此外,我的活动未使用全屏标记。
以下是我的活动XML:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_height="56dp"
android:layout_width="match_parent"
android:paddingTop="25dp"
android:fitsSystemWindows="true"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:background="?attr/colorPrimary" />
<WebView
android:id="@+id/webview_login"
android:fitsSystemWindows="true"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
答案 0 :(得分:1)
也许您可以覆盖名为onSizeChanged()的方法,如下所示:
@Override
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
super.onSizeChanged(w, h, oldw, oldh);
if (onSizeChangedListener != null) {
onSizeChangedListener.onSizeChanged(w, h, oldw, oldh);
}
}