描述
最近寫項(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失效了况既。
解決
在根布局中添加 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>
解決
此時(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吧,有懂的大佬解釋一下翁都。