Android:阻止Google地图在EditText输入后调整/移动

时间:2014-05-11 13:20:58

标签: android google-maps input android-edittext

我在Google地图上有一个基本的EditText,如下所示

enter image description here 每当我在EditText字段中输入内容时,“背景”中的Google地图会自动向上移动,如下所示

enter image description here

(请注意,由于地图向上移动,Google版权标识是如何显示的)

有没有办法解决这个问题,即使我在EditText字段中输入内容,地图也会保持原样(不会自动切换)?

1 个答案:

答案 0 :(得分:1)

您只需将活动的windowSoftInputMode标志切换为“adjustPan”即可。查看官方documentation了解更多信息。

<activity
   ...
   android:windowSoftInputMode="adjustPan"> 
</activity>

如果您使用的是ScrollView,请同时添加android:isScrollContainer="false"

试试..