如題:
點(diǎn)擊edittext 彈出軟鍵盤(pán)
activity 設(shè)置如下
stateHidden|adjustResize;
在有的界面上面顯示沒(méi)有問(wèn)題,padding設(shè)置的夠,有的不行;
不扯了好累:
解決方案如下:
在需要的activity調(diào)用
AndroidBug5497Workaround.assistActivity(this);
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();
}
});
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 = usableHeightNow;
}
mChildOfContent.requestLayout();
usableHeightPrevious = usableHeightNow;
}
}
private int computeUsableHeight() {
Rect r = new Rect();
mChildOfContent.getWindowVisibleDisplayFrame(r);
return (r.bottom - r.top);
}
}
問(wèn)題解決了,但是界面在不是小米手機(jī)的時(shí)候會(huì)抖動(dòng)。
那就好解決了 只需要針對(duì)小米手機(jī)進(jìn)行設(shè)置就可以了。
如果對(duì)軟鍵盤(pán)屬性不熟悉的話可以看<a href = "http://www.lxweimin.com/writer#/notebooks/8610839/notes/8520465">android軟鍵盤(pán)屬性問(wèn)題