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>

Adjust Pan or resize is not working and it is hiding all my text view and that I don't want. Here is another post that declares it a bug. See This related post please

Community
  • 1
  • 1
AZ_
  • 21,688
  • 25
  • 143
  • 191

1 Answers1

-1

just try this

<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>
Sumant
  • 2,775
  • 2
  • 22
  • 30
  • not working :( I am trying it on Android 2.1-update-1 Sony Ericsson X10i – AZ_ May 18 '11 at 06:25
  • Due to the Fullscreen portion of the theme `windowSoftInputMode` is completely ignored. Take a look at `LEO`'s answer here: http://stackoverflow.com/questions/7417123/android-how-to-adjust-layout-in-full-screen-mode-when-softkeyboard-is-visible – Randy Feb 14 '14 at 15:45