軟鍵盤遮擋問題

1.gif

要實(shí)現(xiàn)如上圖效果:
注意不是將頁面整體滑上去昧识,而是讓頁面上滑一部分嘀韧,以達(dá)到不遮擋登錄按鈕的效果

實(shí)現(xiàn)思路:

  1. 監(jiān)聽鍵盤的彈起與收回
  2. 滑動(dòng)

監(jiān)聽鍵盤的彈起與收回

首先在Manifest文件中對相應(yīng)的Activity配置屬性windowSoftInputMode氨菇,讓Activity能夠在鍵盤彈起和收回時(shí)有所響應(yīng)呆奕。

<activity
    android:name=".ui.activitys.login.LoginPwdActivity"
    android:launchMode="singleTask"
    android:screenOrientation="portrait"
    android:windowSoftInputMode="stateHidden|adjustPan" />

監(jiān)聽方法:

/**
 * Register soft input changed listener.
 *
 * @param activity The activity.
 * @param listener The soft input changed listener.
 */
public static void registerSoftInputChangedListener(final Activity activity,
                                                    final OnSoftInputChangedListener listener) {
    final int flags = activity.getWindow().getAttributes().flags;
    if ((flags & WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS) != 0) {
        activity.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);
    }
    final View contentView = activity.findViewById(android.R.id.content);
    sContentViewInvisibleHeightPre = getContentViewInvisibleHeight(activity);
    onSoftInputChangedListener = listener;
    onGlobalLayoutListener = new ViewTreeObserver.OnGlobalLayoutListener() {
        @Override
        public void onGlobalLayout() {
            if (onSoftInputChangedListener != null) {
                int height = getContentViewInvisibleHeight(activity);
                if (sContentViewInvisibleHeightPre != height) {
                    onSoftInputChangedListener.onSoftInputChanged(height);
                    sContentViewInvisibleHeightPre = height;
                }
            }
        }
    };
    contentView.getViewTreeObserver().addOnGlobalLayoutListener(onGlobalLayoutListener);
}

private static int getContentViewInvisibleHeight(final Activity activity) {
    final View contentView = activity.findViewById(android.R.id.content);
    final Rect outRect = new Rect();
    contentView.getWindowVisibleDisplayFrame(outRect);
    return contentView.getBottom() - outRect.bottom;
}

/**
 * Register soft input changed listener.
 *
 * @param activity The activity.
 */
@TargetApi(Build.VERSION_CODES.JELLY_BEAN)
public static void unregisterSoftInputChangedListener(final Activity activity) {
    final View contentView = activity.findViewById(android.R.id.content);
    contentView.getViewTreeObserver().removeOnGlobalLayoutListener(onGlobalLayoutListener);
    onSoftInputChangedListener = null;
    onGlobalLayoutListener = null;
}

public interface OnSoftInputChangedListener {
    void onSoftInputChanged(int height);
}

滑動(dòng)

利用view的topMargin來實(shí)現(xiàn)滑動(dòng)動(dòng)畫

final ViewWrapper wrapper = new ViewWrapper(scrollview);
        SoftInputUtil.registerSoftInputChangedListener(this,
                new SoftInputUtil.OnSoftInputChangedListener() {
                    @Override
                    public void onSoftInputChanged(int height) {
                        HhixLog.e(TAG, SoftInputUtil.isSoftInputVisible(LoginPwdActivity.this) + ",height:" + height + ",tip bottom:" + tvTips.getBottom());
                        versionTv.setVisibility(SoftInputUtil.isSoftInputVisible(LoginPwdActivity.this) ? View.GONE : View.VISIBLE);
                        if (SoftInputUtil.isSoftInputVisible(LoginPwdActivity.this)) {
                            distance = height - (IMApplication.getInstance().screenSize.screenHeight - tipsBottom - UIUtils.dip2px(IMApplication.getInstance(), 24));
                            if (distance > 0) {
                                ivWelcome.setVisibility(View.INVISIBLE);
                                ObjectAnimator animator = ObjectAnimator.ofInt(wrapper, "topMargin", 0, -distance);
                                animator.setDuration(200).start();
                            }
                        } else {
                            if (distance > 0) {
                                ivWelcome.setVisibility(View.VISIBLE);
                                ObjectAnimator animator = ObjectAnimator.ofInt(wrapper, "topMargin", -distance, 0);
                                animator.setDuration(200).start();
                            }
                        }
                    }
                });

/**
 * Return whether soft input is visible.
 * <p>The minimum height is 200</p>
 *
 * @param activity The activity.
 * @return {@code true}: yes<br>{@code false}: no
 */
public static boolean isSoftInputVisible(final Activity activity) {
    return isSoftInputVisible(activity, 200);
}

/**
 * Return whether soft input is visible.
 *
 * @param activity             The activity.
 * @param minHeightOfSoftInput The minimum height of soft input.
 * @return {@code true}: yes<br>{@code false}: no
 */
public static boolean isSoftInputVisible(final Activity activity,
                                         final int minHeightOfSoftInput) {
    return getContentViewInvisibleHeight(activity) >= minHeightOfSoftInput;
}

class ViewWrapper {

    private View mTarget;
    private FrameLayout.LayoutParams mParams;

    public ViewWrapper(View target) {
        mTarget = target;
        mParams = (FrameLayout.LayoutParams) mTarget.getLayoutParams();
    }

    public void setTopMargin(int topMargin) {
        mParams.setMargins(0, topMargin, 0, 0);
        mTarget.setLayoutParams(mParams);
        mTarget.requestLayout();
    }

    public int getTopMargin() {
        return mParams.topMargin;
    }

}
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末吏砂,一起剝皮案震驚了整個(gè)濱河市包帚,隨后出現(xiàn)的幾起案子庆揩,更是在濱河造成了極大的恐慌贸人,老刑警劉巖婶溯,帶你破解...
    沈念sama閱讀 206,723評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件鲸阔,死亡現(xiàn)場離奇詭異,居然都是意外死亡迄委,警方通過查閱死者的電腦和手機(jī)褐筛,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,485評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來叙身,“玉大人渔扎,你說我怎么就攤上這事⌒沤危” “怎么了晃痴?”我有些...
    開封第一講書人閱讀 152,998評論 0 344
  • 文/不壞的土叔 我叫張陵残吩,是天一觀的道長。 經(jīng)常有香客問我倘核,道長泣侮,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,323評論 1 279
  • 正文 為了忘掉前任笤虫,我火速辦了婚禮旁瘫,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘琼蚯。我一直安慰自己,他們只是感情好惠况,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,355評論 5 374
  • 文/花漫 我一把揭開白布遭庶。 她就那樣靜靜地躺著,像睡著了一般稠屠。 火紅的嫁衣襯著肌膚如雪峦睡。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,079評論 1 285
  • 那天权埠,我揣著相機(jī)與錄音榨了,去河邊找鬼。 笑死攘蔽,一個(gè)胖子當(dāng)著我的面吹牛龙屉,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播满俗,決...
    沈念sama閱讀 38,389評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼转捕,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了唆垃?” 一聲冷哼從身側(cè)響起五芝,我...
    開封第一講書人閱讀 37,019評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎辕万,沒想到半個(gè)月后枢步,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,519評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡渐尿,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,971評論 2 325
  • 正文 我和宋清朗相戀三年醉途,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片涡戳。...
    茶點(diǎn)故事閱讀 38,100評論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡结蟋,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出渔彰,到底是詐尸還是另有隱情嵌屎,我是刑警寧澤推正,帶...
    沈念sama閱讀 33,738評論 4 324
  • 正文 年R本政府宣布,位于F島的核電站宝惰,受9級特大地震影響植榕,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜尼夺,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,293評論 3 307
  • 文/蒙蒙 一尊残、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧淤堵,春花似錦寝衫、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,289評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至扎阶,卻和暖如春汹胃,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背东臀。 一陣腳步聲響...
    開封第一講書人閱讀 31,517評論 1 262
  • 我被黑心中介騙來泰國打工着饥, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人惰赋。 一個(gè)月前我還...
    沈念sama閱讀 45,547評論 2 354
  • 正文 我出身青樓宰掉,卻偏偏與公主長得像,于是被迫代替她去往敵國和親谤逼。 傳聞我的和親對象是個(gè)殘疾皇子贵扰,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,834評論 2 345

推薦閱讀更多精彩內(nèi)容