私のアプリにはログイン画面があり、横向きと縦向きをサポートしています。正常に動作しています。私の問題は、ポートレートモードでテキストの編集をクリックするとキーボードが表示されることです。画面は次のようになります。
ただし、横向きモードは縦向きモードのようには見えません。画面は横向きモードのように見えます:
これは私のマニフェストコードです:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.activities"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<!-- Allow to connect with internet -->
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@drawable/launcher_icon"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<!-- Add Google Map Library -->
<uses-library android:name="com.google.android.maps" />
<activity
android:name=".SplashActivity"
android:label="@string/app_name"
android:noHistory="true" android:theme="@style/generalNoTitle">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".LoginActivity" android:theme="@style/generalNoTitle" android:configChanges="keyboardHidden|orientation" />
<activity android:name=".MenuActivity" android:theme="@style/generalNoTitle" />
<activity android:name=".RegularReportsActivity" android:theme="@style/generalNoTitle" android:screenOrientation="landscape"/>
<activity android:name=".StageMaleAndFemaleActivity" android:theme="@style/generalNoTitle" android:screenOrientation="landscape"/>
<activity android:name=".MapViewActivity" android:theme="@style/generalNoTitle" android:screenOrientation="landscape"/>
<activity android:name=".ReportViewActivity" android:theme="@style/generalNoTitle" android:screenOrientation="landscape"/>
</application>
</manifest>
横向きモードで縦向きモードと同じように表示するにはどうすればよいですか?また、誰かが私を導くことができますか?