我的应用程序上传界面的任何设计时,使用键盘如图所示https://i.stack.imgur.com/KxrJs.jpghttps://i.stack.imgur.com/wRQb1.jpg抬起键盘时使底部布局保持向下
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"的行,如下所示。
android:windowSoftInputMode="adjustNothing"
<activity android:name=".MainActivity" android:screenOrientation="portrait" android:windowSoftInputMode="adjustNothing" />
准备好了https://i.stack.imgur.com/8XTMW.jpghttps://i.stack.imgur.com/ZlP6V.jpg
1条答案
按热度按时间sr4lhrrt1#
解决方案如下:您必须转到项目的AndroidManifest.xml文件,并将以下内容放在您想要纠正此问题的活动中。
解决方案是添加名为
android:windowSoftInputMode="adjustNothing"
的行,如下所示。准备好了
https://i.stack.imgur.com/8XTMW.jpg
https://i.stack.imgur.com/ZlP6V.jpg