0

我的应用程序有登录屏幕,它支持横向和纵向。它工作正常。我的问题是在纵向模式下单击编辑文本时显示键盘很好。屏幕如下所示:

肖像

但是横向模式看起来不像纵向模式。屏幕在横向模式下看起来像:

景观

这是我的清单代码:

<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>

如何在横向模式下像纵向模式一样显示?另外,有人可以指导我吗?

4

4 回答 4

1

只需为编辑文本添加android:imeOptions="flagNoExtractUi"

于 2013-07-19T09:47:58.487 回答
0

您能否将以下内容添加到清单文件中:

android:configChanges="orientation|keyboardHidden"
android:windowSoftInputMode="stateHidden"

还要在滚动视图下添加附上您的登录页面。就像是

于 2013-02-26T11:30:33.897 回答
-1

用 < Scroll View > 包围您的布局

在 androidmanifest 中添加这一行

android:windowSoftInputMode="stateHidden|adjustResize|adjustPan"

于 2013-02-26T10:53:56.413 回答
-1

我认为您没有为横向模式实现应用程序登录屏幕。因此,它显示的是默认视图。

res文件夹中创建一个子文件夹layout-land也为景观实现 UI

于 2013-02-26T11:21:37.337 回答