这是布局:

<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并出现软键盘时,蓝色条保持不变。 IE。我希望保留其大小和位置。我在AndroidManifest中尝试了 Activity 参数android:windowSoftInputMode的所有四个可能值。而且总是出现在软键盘上的蓝色条移动或收缩:
android:windowSoftInputMode="adjustUnspecified"或默认情况下:
android:windowSoftInputMode="adjustPan"android:windowSoftInputMode="adjustNothing":
android:windowSoftInputMode="adjustResize":

出现软键b时,是否可以将其大小和位置保持相同?

最佳答案

您必须使用<ScrollView>作为主布局。
例子:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
   android:layout_height="match_parent">
   ....
</ScrollView>

或在AndroidManiFest.xml中使用以下代码:
<activity
     android:windowSoftInputMode="adjustNothing">
</activity>

09-25 21:40