<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>
调整平移或调整大小不起作用,它隐藏了我的所有文本视图,而且我不想要。这是另一篇宣称它是一个bug的帖子。 See This related post please
答案 0 :(得分:-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>