美文网首页
软键盘相关

软键盘相关

作者: 已经是咸鱼的小涛orz | 来源:发表于2017-07-31 14:12 被阅读0次

禁止软键盘弹出时顶起布局

setContentView();前加

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);

底部view随软键盘顶起

manifest

<activity
      android:name=".MainActivity"
      android:screenOrientation="portrait"
      android:windowSoftInputMode="adjustResize"/>
layout
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:gravity="center_horizontal"
        android:orientation="vertical">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

        </LinearLayout>

    </LinearLayout>

    <View
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

</LinearLayout>

2016122094855093.png

相关文章

网友评论

      本文标题:软键盘相关

      本文链接:https://www.haomeiwen.com/subject/smfrlxtx.html