安卓:ScrollView不使用键盘滚动
2022-08-31 17:44:59
我有一个带有一些视图的布局,其中一个是EditText。布局很容易适应一个页面,但是,当软键盘出来时,布局不会滚动。以下是我的布局回顾:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background" >
<ScrollView
android:id="@+id/ScrollView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<CheckBox/>
<TextView/>
<LinearLayout>
<EditText>
<requestFocus />
</EditText>
</LinearLayout>
<TextView/>
<LinearLayout>
<Spinner/>
</LinearLayout>
</LinearLayout>
</ScrollView>
<Button
android:layout_alignParentBottom="true" />
</RelativeLayout>
在我的清单中,我声明了属性:
android:windowSoftInputMode="adjustResize|stateHidden"
有谁知道为什么它不起作用以及如何确保它确实有效?
提前致谢!