2014-05-11 37 views
1

我有超過谷歌地圖一個基本的EditText如下圖所示安卓:防止谷歌地圖從調整/ EditText上輸入後,移動

enter image description here 每當我鍵入的東西進入的EditText領域,谷歌地圖中的「背景」,將自動向上移動本身,如下面所示

enter image description here

(注意如何出現的谷歌版權標誌由於地圖的向上移動)

有沒有辦法解決這個問題,這樣即使我在EditText字段中鍵入東西,地圖也會保持不變(不會自動移位)?

+0

發表您的清單,請.. – Lal

+0

試試這個辦法 - 只是從你的清單中刪除了'windowSoftInputMode'參數。或者使用'android:windowSoftInputMode =「adjustPan」' – Lal

+0

或..檢查我的答案.. – Lal

回答

1

您可以簡單地將活動的windowSoftInputMode標誌切換爲「adjustPan」。檢查官方documentation欲知更多信息。

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

如果您正在使用ScrollView添加這也android:isScrollContainer="false"

試試吧..