91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

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

發布時間:2020-07-20 02:00:44 來源:網絡 閱讀:3716 作者:駿駿Daniel 欄目:移動開發

之前寫注冊頁面的時候,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寫死的,所以布局高度變了以后內容移動標題不動。

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

扎鲁特旗| 金川县| 镇赉县| 滦平县| 兴山县| 南溪县| 同德县| 开远市| 民权县| 庐江县| 西盟| 织金县| 汉川市| 平潭县| 万荣县| 屯门区| 禹城市| 定边县| 平阴县| 炉霍县| 潞城市| 来安县| 稻城县| 华阴市| 承德县| 江山市| 什邡市| 北流市| 麻栗坡县| 嘉禾县| 襄樊市| 肥东县| 桐庐县| 安国市| 九龙城区| 河间市| 宕昌县| 阳山县| 海盐县| 张家川| 苗栗县|