2011-05-18 21 views
1
<activity android:name="com.jony.ViewMessages" 
      android:label="@string/app_name" android:screenOrientation="landscape" 
      android:configChanges="orientation" 
      android:windowSoftInputMode="stateUnspecified|adjustUnspecified"    android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"> 
     </activity> 

調整平移或調整大小不工作,它隱藏我的所有文本視圖,我不想。這是另一篇文章,聲明它是一個錯誤。 See This related post please安卓鍵盤不能調整/平移工作android:windowSoftInputMode =

回答

-1

只是試試這個

<activity android:name="com.jony.ViewMessages" 
      android:label="@string/app_name" 
      android:screenOrientation="landscape" 
      android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" 
      android:windowSoftInputMode="adjustPan"> 
</activity> 
+0

不工作:(我想它在Android 2.1更新-1索尼愛立信X10i – 2011-05-18 06:25:13

+0

由於'windowSoftInputMode'被完全忽略了主題的全屏部分。以看看'LEO'的答案在這裏:http://stackoverflow.com/questions/7417123/android-how-to-adjust-layout-in-full-screen-mode-when-softkeyboard-is-visible – Randy 2014-02-14 15:45:33