当android studio键盘显示时不要移动布局

0s0u357o  于 2023-01-26  发布在  Android
关注(0)|答案(1)|浏览(190)

我的应用程序上传界面的任何设计时,使用键盘如图所示
https://i.stack.imgur.com/KxrJs.jpg
https://i.stack.imgur.com/wRQb1.jpg
抬起键盘时使底部布局保持向下

sr4lhrrt

sr4lhrrt1#

解决方案如下:您必须转到项目的AndroidManifest.xml文件,并将以下内容放在您想要纠正此问题的活动中。

<application
    android:allowBackup="true"
    android:icon="@drawable/icon"
    android:label="@string/app_name"
    android:roundIcon="@drawable/icon"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">

    <activity
        android:name=".SplashActivity"
        android:screenOrientation="portrait">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

解决方案是添加名为android:windowSoftInputMode="adjustNothing"的行,如下所示。

<activity
        android:name=".MainActivity"
        android:screenOrientation="portrait"
        android:windowSoftInputMode="adjustNothing" />

准备好了
https://i.stack.imgur.com/8XTMW.jpg
https://i.stack.imgur.com/ZlP6V.jpg

相关问题