Android:windowSoftInputMode =“adjustResize”对UI没有影响

时间:2015-04-18 08:02:57

标签: android android-layout

我知道在这方面有关于SO的类似问题。但我完全无助。我有一个多行编辑文本,在几个元素之后放在LinearLayout中。输入文本时,它是隐藏的。
解决方法是在清单文件中添加属性android:windowSoftInputMode="adjustResize"。它没有效果。
进一步搜索SO,我发现我需要在根布局元素中添加属性android:fitsSystemWindows="true"。然而,它不起作用。有什么问题?

这是清单文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.mytasks">
    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".TaskDetails"
            android:label="@string/title_activity_task_details"
            android:windowSoftInputMode="adjustResize"
            >
        </activity>
    </application>
</manifest>

活动布局xml文件:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
    android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:orientation="vertical"
    android:layout_alignParentBottom="true"
    android:fitsSystemWindows="true"
    android:paddingBottom="@dimen/activity_vertical_margin" tools:context="com.mytasks.TaskDetails">

    <TextView
        android:text="Short description of the task"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textStyle="bold"
        android:textSize="@dimen/abc_text_size_medium_material"
        android:typeface="sans"
        android:layout_margin="7dp"
     />

    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/sd"
        android:hint="e.g. To meet doctor"
        android:layout_margin="7dp"
    />

    <TextView
        android:text="Type"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="7dp"
        android:textStyle="bold"
        android:textSize="@dimen/abc_text_size_medium_material"
        android:typeface="sans"

        />

    <Spinner
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/type"
        android:entries="@array/type"
        android:layout_margin="7dp"
    />

    <TextView
        android:text="Priority"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="7dp"
        android:textStyle="bold"
        android:textSize="@dimen/abc_text_size_medium_material"
        android:typeface="sans"
        />

    <Spinner
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/priority"
        android:entries="@array/priority"
        android:layout_margin="7dp"
    />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Description"
        android:layout_margin="7dp"
        android:textStyle="bold"
        android:textSize="@dimen/abc_text_size_medium_material"
        android:typeface="sans"
        />

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="7dp"
        >

    <EditText
        android:layout_width="match_parent"
        android:layout_height="fill_parent"
        android:singleLine="false"
        android:id="@+id/description"
        android:inputType="textMultiLine"
        android:gravity="top"
        android:lines="4"
        android:maxLines="10"
        android:scrollbars="vertical"
    />
    </ScrollView>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="7dp"
        >
        <Button
            android:id="@+id/save"
            android:text="Save"
            android:layout_weight="1"
            android:layout_width="0dip"
            android:layout_height="wrap_content" />
        <Button
            android:id="@+id/cancel"
            android:text="Cancel"
            android:layout_weight="1"
            android:layout_width="0dip"
            android:layout_height="wrap_content" />
    </LinearLayout>
</LinearLayout>

截图:

最初:

enter image description here

键盘显示后:

enter image description here

1 个答案:

答案 0 :(得分:1)

使用adjustPan可以翻译屏幕。

或者将屏幕的所有字段放入ScrollView,以便缩小区域。