我想在软键盘打开时调整我的活动布局。我试着把它放在清单中:
android:windowSoftInputMode="adjustResize"
但它不起作用。这是我的 xml 布局:
<RelativeLayout 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=".ui.SettingsActivity">
<!-- BODY -->
<ScrollView
android:id="@+id/scrollViewBody"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<!-- my list -->
</LinearLayout>
</ScrollView>
<!-- TOOLBAR -->
<include layout="@layout/toolbar" />
键盘打开时布局不会调整大小...请帮帮我
饮歌长啸
相关分类