2015-06-08 210 views
-3

如何移動如下圖所示的按鈕圖像:enter image description here當鍵盤顯示時顯示。打開鍵盤時如何使用鍵盤移動按鈕

+0

不清楚的問題。請清楚說明您的問題。 –

+0

[顯示軟鍵盤時移動佈局]可能的重複?(http://stackoverflow.com/questions/1964789/move-layouts-up-when-soft-keyboard-is-shown) –

回答

2

在您的Manifest文件中,在您的活動中,添加android:windowSoftInputMode="stateVisible|adjustResize"。例如:

<activity 
android:name=".MainActivity" 
android:windowSoftInputMode="stateVisible|adjustResize" 
....> 
</activity> 
0

只是添加在AndroidManifest.xml後您的特定活動:

android:windowSoftInputMode="adjustPan|adjustResize" 
+0

這是重複的這個答案:http://stackoverflow.com/questions/1964789/move-layouts-up-when-soft-keyboard-is-shown/19406877#19406877 –