Adnroid的軟鍵盤

關(guān)于Adnroid的軟鍵盤

今天在做聊天輸入框的時候,發(fā)現(xiàn)彈出的軟鍵盤把獲得焦點的EditText控件給擋住了,于是找了相關(guān)的API。官方提供了一系列的配置參數(shù)可供選擇。在清單文件中對應(yīng)的Activity中的windowSoftInputMode屬性選擇

  • SOFT_INPUT_ADJUST_NOTHING

  • SOFT_INPUT_ADJUST_PAN

  • SOFT_INPUT_ADJUST_RESIZE

  • SOFT_INPUT_ADJUST_UNSPECIFIED

      <activity
          android:windowSoftInputMode="stateHidden|adjustNothing"
          android:name=".MainActivity"
          android:label="@string/app_name">
          <intent-filter>
              <action android:name="android.intent.action.MAIN"/>
              <category android:name="android.intent.category.LAUNCHER"/>
          </intent-filter>
      </activity>
    

如上配置即可。

  • adjustNothing不調(diào)整;
  • adjustPan會將整個頁面都頂上去,為了把輸入框顯示出來;
  • adjustResize會重新調(diào)整壓縮頁面的尺寸,把軟鍵盤需要的空間讓出來,看起來就像被壓扁了;
  • adjustUnspecified作為一種默認的配置,系統(tǒng)自己根據(jù)內(nèi)容自行選擇上兩種方式的一種執(zhí)行。

主要就是adjustPanadjustResize之間選擇了,可是兩種都達不到預(yù)期的效果,達不到當軟鍵盤彈出時背景不變形,位置不變化,只是EditText的位置始終在軟鍵盤的頂部,彈出的時候把背景給蓋住了??雌饋砭拖袷莾刹糠?,輸入框在動,可以把背景給蓋住。


最后,還是把布局分為了兩部分,背景部分用一個ScrollView包裹了起來,這樣就不會因為軟鍵盤的彈出,一會兒被壓扁或者被頂上去了。頂上去的只有EditText這個輸入框,windowSoftInputMode模式還是選擇adjustResize這個,用adjustPan的話,背景還是會被頂上去,不管是不是加了ScrollView

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:orientation="vertical">

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    >

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

        <ImageView
            android:id="@+id/img"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/a"/>

    </LinearLayout>
</ScrollView>

<EditText
    android:id="@+id/mEt"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>
</LinearLayout>

這樣就達到預(yù)期的效果了

還有美女^^

1.png
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容