美文网首页Android开发Android开发
Android软键盘导致界面上移问题解决

Android软键盘导致界面上移问题解决

作者: 房嘻 | 来源:发表于2019-10-08 17:26 被阅读0次

    最近遇到个问题,就是软键盘弹出时,后面的界面总是上移,网上查了好多文章,基本上把android:windowSoftInputMode中列的属性都试了一遍,都不生效,最后去看了下类常量,才发现有个adjustNothing的常量,设置到AndroidManifest.xml中对应<activity>标签下就解决了。

    <activity android:name=".WhhTestActivity"
              android:windowSoftInputMode="adjustNothing">
          <intent-filter>
               <action android:name="android.intent.action.MAIN" />
               <category android:name="android.intent.category.LAUNCHER" />
          </intent-filter>
    </activity>
    

    Android软件盘属性可以去看这篇文章Android中windowSoftInputMode的配置与软键盘状态

    相关文章

      网友评论

        本文标题:Android软键盘导致界面上移问题解决

        本文链接:https://www.haomeiwen.com/subject/kdxipctx.html