2011-05-18 9 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アンドロイドキーボードは調整しませんアンドロイド: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

は私が2.1-更新-1ソニーエリクソンX10i –

+0

によりwindowSoftInputMode'が完全に無視された 'テーマのフルスクリーン部分にAndroid上でそれをしようとしています:(機能していないしてみてください。くださいLEOの答えはこちらhttp://stackoverflow.com/questions/7417123/android-how-to-adjust-layout-in-full-screen-mode-when-softkeyboard-is-visible – Randy

関連する問題