这是一个布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<FrameLayout
android:layout_width="match_parent"
android:layout_height="0px"
android:layout_weight="1" />
<FrameLayout
android:background="#0000ff"
android:layout_width="match_parent"
android:layout_height="0px"
android:layout_weight="1" />
<FrameLayout
android:layout_width="match_parent"
android:layout_height="0px"
android:layout_weight="1" />
</LinearLayout>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" />
</RelativeLayout>
当触摸 EditText 并出现软键盘时,我希望蓝条保持不变。即我希望保留它的大小和位置。android:windowSoftInputMode
我在 AndroidManifest 中为我的活动参数尝试了所有四个可能的值。我的蓝条总是在出现的软键盘上移动或缩小:
android:windowSoftInputMode="adjustUnspecified"
或默认情况下:
android:windowSoftInputMode="adjustPan"
或android:windowSoftInputMode="adjustNothing"
:
android:windowSoftInputMode="adjustResize"
:
出现软键b时是否可以保持相同的大小和位置?