软键盘来自EditText

时间:2011-06-01 18:05:14

标签: android user-interface

我正在使用Eclipse ADT开发Android应用程序。当焦点出现在EditText之一(在页面的下端)时,键盘会覆盖EditText,所以当我键入文本时,我看不到被键入的内容。我有什么选择?

指数活动的布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" android:layout_height="fill_parent"
    android:background="#a8e8f0" android:orientation="vertical" android:id="@+id/layout">
    <LinearLayout android:layout_width="fill_parent"
        android:layout_height="fill_parent" android:orientation="vertical" android:background="@drawable/welcome_background">
        <include layout="@layout/top"></include>
        <RelativeLayout android:layout_height="wrap_content"
            android:layout_width="fill_parent" android:gravity="center">
            <LinearLayout android:layout_width="270dp"
                android:orientation="vertical" android:layout_height="wrap_content"
                android:id="@+id/body">
                <ImageView android:layout_width="wrap_content" android:src="@drawable/welcome_title" android:layout_height="wrap_content" android:id="@+id/title" style="@style/Theme.Connector.ImageElement"></ImageView>
                <TextView android:text="@string/welcome_text" android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/txt_welcome" style="@style/Theme.Connector.FormText"></TextView>
                <Spinner android:layout_width="fill_parent"
                    android:layout_height="wrap_content" style="@style/Theme.Connector.WelcomeSpinner"
                    android:layout_weight="1" android:id="@+id/spinner_isp" />
                <EditText android:layout_height="wrap_content" android:singleLine="true"
                    style="@style/Theme.Connector.WelcomeInput" android:hint="@string/txt_user"
                    android:layout_width="fill_parent" android:id="@+id/edit_user"></EditText>
                <EditText android:layout_alignParentLeft="true"  android:singleLine="true"
                    android:layout_height="wrap_content" style="@style/Theme.Connector.WelcomeInput"
                    android:hint="@string/txt_password" android:layout_width="fill_parent"
                    android:password="true" android:id="@+id/edit_password"/>
                <LinearLayout android:layout_width="fill_parent"
                    android:orientation="horizontal" android:layout_height="fill_parent"
                    android:id="@+id/frm_action">
                    <Button style="@style/Theme.Connector.Button"
                        android:layout_height="wrap_content" android:layout_width="100dp"
                        android:text="@string/btn_cancel" android:layout_weight="1"
                        android:id="@+id/btn_cancel" />
                    <Button android:text="@string/btn_continue"
                        android:layout_height="wrap_content" android:layout_width="100dp"
                        style="@style/Theme.Connector.ButtonContinue"
                        android:layout_weight="1" android:id="@+id/btn_continue"></Button>
                </LinearLayout>
            </LinearLayout>
        </RelativeLayout>
    </LinearLayout>
</LinearLayout>

的AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="vex.connector" android:versionCode="1" android:versionName="1.0">

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

    <application android:icon="@drawable/icon" android:label="@string/app_name"
        android:theme="@style/Theme.Connector">

        <activity android:name=".IndexActivity" android:label="@string/app_name"
            android:screenOrientation="portrait" android:windowSoftInputMode="stateVisible|adjustPan">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <receiver android:name=".WiFiBroadcastReceiver">
            <intent-filter>
                <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
            </intent-filter>
        </receiver>

    </application>
</manifest>

键盘

keyboard

3 个答案:

答案 0 :(得分:9)

将外部LinearLayout包装在ScrollView中,例如,

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    ...

    <!-- Your current layout here -->

</ScrollView>

这应允许滚动布局以查看较低的EditText

答案 1 :(得分:1)

我有完全相同的问题,我发现tarkeshwar的方法更好。

  

如果您设置android:windowSoftInputMode =“adjustResize”而不是您当前的adjustPan会发生什么?另外,你使用的是全屏风格(android:windowFullscreen)吗?直到今天我才有类似的软键盘重叠问题。使用adjustResize并摆脱全屏风格修复它。

     

tarkeshwar

答案 2 :(得分:1)

如果这些答案都没有帮助确保您的样式没有设置此属性:

<item name="android:windowTranslucentStatus">true</item>

如果是,请覆盖您的活动样式。