1. 程式人生 > >怎麽讓軟鍵盤彈出時,部分控件上移

怎麽讓軟鍵盤彈出時,部分控件上移

all mar alt color resize res 監聽 nag tcl

之前寫註冊頁面的時候,UI同學給我提了個意見,讓彈出軟鍵盤時候,左上角的標題“註冊”不動,中間內容往上移動,效果這樣
技術分享圖片
技術分享圖片
經過查閱資料和多方實踐,解決方法如下

1、先要設置頁面軟鍵盤模式,這樣每次軟鍵盤彈出後布局高度會減少軟鍵盤的高度

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN
                | WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);

2、找出內容view,在每次布局為軟鍵盤彈出減小高度時監聽,改變內容view

mVContent = findViewById(android.R.id.content);

ViewTreeObserver.OnGlobalLayoutListener mLsnrLayout =
            new ViewTreeObserver.OnGlobalLayoutListener() {
                @Override
                public void onGlobalLayout () {

                    Rect rect = new Rect();
                    mVContent.getWindowVisibleDisplayFrame(rect);
                    int height = rect.height();

                    boolean isImmShow = height < UcApp.sHeightPx;
                    if ( isImmShow != mIsImmShow ) {
                        mIsImmShow = isImmShow;

                        mUbtnCommit.setVisibility(isImmShow ? View.INVISIBLE : View.VISIBLE);
                    }
                }
            };

mVContent.getViewTreeObserver().addOnGlobalLayoutListener(mLsnrLayout);

XML格式是這樣的,標題我是在基類上設置加上的
技術分享圖片

    <!--註冊布局-->
    <android.support.constraint.ConstraintLayout
        android:id="@+id/cl_register"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:visibility="visible">
public void setTitle (String txt) {

    if ( null == mTvTitle ) {

        mTvTitle = new TextView(UcApp.sCtx);
        ((FrameLayout) getWindow().getDecorView()).addView(mTvTitle);
        ViewUtils.inst(mTvTitle)
                .setMargins(119, 54, 0, 0)
                .setTextSize(42);
        mTvTitle.setTypeface(Typeface.DEFAULT_BOLD);
        mTvTitle.setTextColor(ComUtils.getClr(R.color.white_f2f2f2_60));
    }

    mTvTitle.setText(txt);
}

就是設置了margin

因為內容布局是豎直居中的,標題是margin寫死的,所以布局高度變了以後內容移動標題不動。

希望這篇文章能幫助大家,大佬勿噴~

怎麽讓軟鍵盤彈出時,部分控件上移