Android:屏幕键盘自动建议完成后重新对齐布局

发布于 2024-12-11 05:24:38 字数 190 浏览 0 评论 0原文

我希望这是有道理的......

基本上,当屏幕键盘出现,然后出现自动建议时,它会将我的视图推到屏幕上 - 我想保留的 imageView 中的图形。

当自动完成完成后,尽管自动建议消失,屏幕仍保持在原来的位置。

有什么方法可以让我的布局回收该空间并简单地再次返回到空白空间吗?即再次浮回下方?

干杯:)

I hope that makes sense...

Basically when the on screen keyboard appears and then the auto suggestions as well, it pushes my view up the screen - a graphic in an imageView that I would like to persist.

When the auto complete is over and done with, the screen stays where is is despite the auto suggest disappearing.

Is there any way to let my layout reclaim that space and simply go back down again into the empty space ? ie to float back down again ?

Cheers :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

天气好吗我好吗 2024-12-18 05:24:38

如果我没猜错,请尝试将以下行添加到清单中的 中:

<application 
    android:icon="@drawable/icon"
    android:label="@string/app_name">
    <activity
        ...
        android:windowSoftInputMode="adjustPan"
        ...>
    ...
    </activity>
...
</application>        

If I got you right, try adding the following line to the <activity> in your manifest:

<application 
    android:icon="@drawable/icon"
    android:label="@string/app_name">
    <activity
        ...
        android:windowSoftInputMode="adjustPan"
        ...>
    ...
    </activity>
...
</application>        
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文