關(guān)于Android軟鍵盤在全屏下設(shè)置adjustResize無效的問題

描述

最近寫項(xiàng)目的時(shí)候,框架為了保證沉浸式的效果娄猫,整體從底層實(shí)現(xiàn)了就將整個(gè)Activity設(shè)置為全屏昏鹃,從而使adjustResize設(shè)置失效,導(dǎo)致輸入框不上移贩疙。
設(shè)置adjustResize正常情況下:


正常情況下

問題一

全屏情況下:

 override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    window?.apply {
      setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE)
      val option = View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN or View.SYSTEM_UI_FLAG_LAYOUT_STABLE
      decorView.systemUiVisibility = option
      if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
        addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS)
        statusBarColor = Color.BLACK
      }
    }
    setContentView(R.layout.activity_main)
  }
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    >
  <EditText
      android:id="@+id/etName"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:hint="用戶名"
      app:layout_constraintBottom_toBottomOf="parent"
      app:layout_constraintLeft_toLeftOf="parent"
      app:layout_constraintRight_toRightOf="parent"
      app:layout_constraintTop_toTopOf="parent"
      />

  <EditText
      android:id="@+id/etPassword"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_marginTop="20dp"
      android:hint="密碼"
      app:layout_constraintLeft_toLeftOf="parent"
      app:layout_constraintRight_toRightOf="parent"
      app:layout_constraintTop_toBottomOf="@+id/etName"
      />

  <Button
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_marginTop="30dp"
      android:text="登錄"
      app:layout_constraintLeft_toLeftOf="parent"
      app:layout_constraintRight_toRightOf="parent"
      app:layout_constraintTop_toBottomOf="@+id/etPassword"
      />
</androidx.constraintlayout.widget.ConstraintLayout>

就出現(xiàn)如下情況讹弯,adjustResize失效了况既。


bug1

解決

在根布局中添加 android:fitsSystemWindows="true"屬性,使系統(tǒng)窗口來調(diào)整自己的布局组民。

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    android:fitsSystemWindows="true"
    >
   ···
</androidx.constraintlayout.widget.ConstraintLayout>

問題二

當(dāng)布局中存在ScrollView或者NestedScrollView又回出現(xiàn)類似的情況

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:context=".MainActivity"
    >
  <ScrollView
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      app:layout_constraintBottom_toBottomOf="parent"
      app:layout_constraintTop_toTopOf="parent"
      >

    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        >

      <TextView
          android:id="@+id/tvContent"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:lineSpacingMultiplier="2"
          android:text="歌詞是詩歌的一種棒仍,入樂的叫歌,不入樂的叫詩(或詞)臭胜。入樂的歌在感情抒發(fā)莫其、形象塑造上和詩沒有任何區(qū)別,但在結(jié)構(gòu)上耸三、節(jié)奏上要受音樂的制約乱陡,在韻律上要照顧演唱的方便,在遣詞煉字上要考慮聽覺藝術(shù)的特點(diǎn)仪壮,因?yàn)樗霕犯璩┑摺8柙~與詩的分別,主要是詩不一定要入樂(合樂)睛驳,歌詞是要合樂的烙心。合樂成為歌曲。歌詞一般是配合曲子旋律一同出現(xiàn)的乏沸,歌詞是歌曲的本意所在∫穑現(xiàn)代一般是配合音樂,便于哼唱的語句蹬跃。"
          app:layout_constraintTop_toTopOf="parent"
          />

      <EditText
          android:id="@+id/etName"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:layout_marginTop="50dp"
          android:hint="用戶名"
          app:layout_constraintLeft_toLeftOf="parent"
          app:layout_constraintRight_toRightOf="parent"
          app:layout_constraintTop_toBottomOf="@+id/tvContent"
          />

      <EditText
          android:id="@+id/etPassword"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:layout_marginTop="20dp"
          android:hint="密碼"
          app:layout_constraintLeft_toLeftOf="parent"
          app:layout_constraintRight_toRightOf="parent"
          app:layout_constraintTop_toBottomOf="@+id/etName"
          />

      <Button
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:layout_marginTop="30dp"
          android:text="登錄"
          app:layout_constraintLeft_toLeftOf="parent"
          app:layout_constraintRight_toRightOf="parent"
          app:layout_constraintTop_toBottomOf="@+id/etPassword"
          />
    </androidx.constraintlayout.widget.ConstraintLayout>
  </ScrollView>
</androidx.constraintlayout.widget.ConstraintLayout>
bug2

解決

此時(shí)注意三個(gè)地方添加屬性匙瘪, 跟布局的 android:fitsSystemWindows="true",NestedScrollView的android:fillViewport="true"和ScrollView的直接子布局ConstraintLayout的 android:layout_gravity="bottom"蝶缀,三個(gè)地方的屬性缺一個(gè)都會(huì)存在問題丹喻。

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:context=".MainActivity"
    >
  <androidx.core.widget.NestedScrollView
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:fillViewport="true"
      app:layout_constraintBottom_toBottomOf="parent"
      app:layout_constraintTop_toTopOf="parent"
      >

    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom"
        >
         ···
      </LinearLayout>

    </androidx.core.widget.NestedScrollView>

  </LinearLayout>

總結(jié)

這個(gè)可能是谷歌的一個(gè)bug吧,有懂的大佬解釋一下翁都。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末碍论,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子柄慰,更是在濱河造成了極大的恐慌鳍悠,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,968評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件坐搔,死亡現(xiàn)場離奇詭異藏研,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)概行,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評論 2 382
  • 文/潘曉璐 我一進(jìn)店門蠢挡,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事业踏∏菥妫” “怎么了?”我有些...
    開封第一講書人閱讀 153,220評論 0 344
  • 文/不壞的土叔 我叫張陵勤家,是天一觀的道長瞎抛。 經(jīng)常有香客問我,道長却紧,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,416評論 1 279
  • 正文 為了忘掉前任胎撤,我火速辦了婚禮晓殊,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘伤提。我一直安慰自己巫俺,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,425評論 5 374
  • 文/花漫 我一把揭開白布肿男。 她就那樣靜靜地躺著介汹,像睡著了一般。 火紅的嫁衣襯著肌膚如雪舶沛。 梳的紋絲不亂的頭發(fā)上嘹承,一...
    開封第一講書人閱讀 49,144評論 1 285
  • 那天,我揣著相機(jī)與錄音如庭,去河邊找鬼叹卷。 笑死,一個(gè)胖子當(dāng)著我的面吹牛坪它,可吹牛的內(nèi)容都是我干的骤竹。 我是一名探鬼主播,決...
    沈念sama閱讀 38,432評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼往毡,長吁一口氣:“原來是場噩夢啊……” “哼蒙揣!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起开瞭,我...
    開封第一講書人閱讀 37,088評論 0 261
  • 序言:老撾萬榮一對情侶失蹤懒震,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后惩阶,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體挎狸,經(jīng)...
    沈念sama閱讀 43,586評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,028評論 2 325
  • 正文 我和宋清朗相戀三年断楷,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了锨匆。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,137評論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖恐锣,靈堂內(nèi)的尸體忽然破棺而出茅主,到底是詐尸還是另有隱情,我是刑警寧澤土榴,帶...
    沈念sama閱讀 33,783評論 4 324
  • 正文 年R本政府宣布诀姚,位于F島的核電站,受9級特大地震影響玷禽,放射性物質(zhì)發(fā)生泄漏赫段。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,343評論 3 307
  • 文/蒙蒙 一矢赁、第九天 我趴在偏房一處隱蔽的房頂上張望糯笙。 院中可真熱鬧,春花似錦撩银、人聲如沸给涕。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽够庙。三九已至,卻和暖如春抄邀,著一層夾襖步出監(jiān)牢的瞬間耘眨,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評論 1 262
  • 我被黑心中介騙來泰國打工撤摸, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留毅桃,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,595評論 2 355
  • 正文 我出身青樓准夷,卻偏偏與公主長得像钥飞,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子衫嵌,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,901評論 2 345