您好,我有一个包含多个 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>