Created
August 31, 2016 07:18
-
-
Save beilly/3704963d4c6b425d3520517eccb751b7 to your computer and use it in GitHub Desktop.
WebView adjustResize windowSoftInputMode breaks when activity is fullscreen.Depent on https://github.com/madebycm/AndroidBug5497Workaround
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.vcredit.utils; | |
import android.app.Activity; | |
import android.graphics.Rect; | |
import android.view.View; | |
import android.view.ViewTreeObserver; | |
import android.widget.FrameLayout; | |
/** | |
* Created by shibenli on 2016/8/31. | |
*/ | |
public class AndroidBug5497Workaround { | |
// For more information, see https://code.google.com/p/android/issues/detail?id=5497 | |
// To use this class, simply invoke assistActivity() on an Activity that already has its content view set. | |
public static void assistActivity (Activity activity) { | |
new AndroidBug5497Workaround(activity); | |
} | |
private View mChildOfContent; | |
private int usableHeightPrevious; | |
private FrameLayout.LayoutParams frameLayoutParams; | |
private AndroidBug5497Workaround(Activity activity) { | |
FrameLayout content = (FrameLayout) activity.findViewById(android.R.id.content); | |
mChildOfContent = content.getChildAt(0); | |
mChildOfContent.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() { | |
public void onGlobalLayout() { | |
possiblyResizeChildOfContent(); | |
mChildOfContent.postInvalidate(); | |
} | |
}); | |
frameLayoutParams = (FrameLayout.LayoutParams) mChildOfContent.getLayoutParams(); | |
} | |
private void possiblyResizeChildOfContent() { | |
int usableHeightNow = computeUsableHeight(); | |
if (usableHeightNow != usableHeightPrevious) { | |
int usableHeightSansKeyboard = mChildOfContent.getRootView().getHeight(); | |
int heightDifference = usableHeightSansKeyboard - usableHeightNow; | |
if (heightDifference > (usableHeightSansKeyboard/4)) { | |
// keyboard probably just became visible | |
frameLayoutParams.height = usableHeightSansKeyboard - heightDifference; | |
} else { | |
// keyboard probably just became hidden | |
frameLayoutParams.height = usableHeightSansKeyboard; | |
} | |
mChildOfContent.requestLayout(); | |
usableHeightPrevious = usableHeightNow; | |
} | |
} | |
private int computeUsableHeight() { | |
Rect r = new Rect(); | |
mChildOfContent.getWindowVisibleDisplayFrame(r); | |
return (r.bottom - r.top); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment