4

您好,我有一个包含多个 textView 的垂直滚动视图。

在底部我有一个 EditText,就像一个消息应用程序一样。我在清单中设置了 android:windowSoftInputMode="adjustPan"。

问题是,当我点击 editText 时,我的布局会上升,这很好,但是键盘将我的 editText 切成两半,就像图片中一样。

 <ScrollView
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="8"
    android:background="#CCCCCC" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"

        android:orientation="vertical" >
           //many textView
          <TextView
            android:id="@+id/text_area"
            android:layout_width="fill_parent"
            android:layout_height="50dp"
            android:background="#FF0000"
            android:layout_marginBottom="15dp"
            android:paddingLeft="10dp"
            android:textColor="#168191" />

          </LinearLayout>
</ScrollView>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:orientation="horizontal"
    android:weightSum="10" >

    <EditText
        android:id="@+id/send_msg"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="8"
        android:background="#CCDEDC"
        android:paddingLeft="20dp"
        android:text="Large Text"
        android:textColor="#168191"
        android:textSize="15dp" />
        <Button
        android:id="@+id/send_msg_btn"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="2"
        android:background="#CCCCCC"
        android:text="Send"
        android:textColor="#FFFFFF" />
</LinearLayout>

打印屏幕

4

2 回答 2

3

将以下选项添加到您希望通过键盘查看“未剪切”文本的活动的 AndroidManifest.xml 中。android:windowSoftInputMode="adjustPan|stateHidden"

UPD 可能是您需要更改 edittext 样式的填充,因为它似乎是自定义的。

于 2012-08-14T00:29:19.767 回答
1

在清单的活动标记中使用 android:windowSoftInputMode="adjustResize" 。它将在软键盘上方显示您的所有视图。

于 2012-12-26T09:46:25.123 回答