我正在使用
android:uiOptions="splitActionBarWhenNarrow"
for Bottom Action Bar。
和这个
android:windowSoftInputMode="adjustResize"
用于在出现软键盘时调整视图。 但问题是当键盘打开时底部操作栏如图所示进入键盘。即使键盘打开,我也想在底部。如果我不使用“adjustResize”它仍然在底部但是当键盘打开时我的视图不可滚动,我看不到整个视图。我想要两个东西意味着底部操作栏应保持在底部,视图应保持可滚动。
任何帮助都将不胜感激。谢谢。
<?xml version="1.0" encoding="UTF-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:map="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/action_bar"
android:layout_alignParentTop="true" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".AddScreen" >
<View
android:layout_width="0dp"
android:layout_height="10dp" />
<EditText
android:id="@+id/add_et_task_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:nextFocusDown="@+id/add_et_task_remarks"
android:hint="Task Name" />
<EditText
android:id="@+id/add_et_task_remarks"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:hint="Remarks"
android:inputType="textMultiLine"
android:lines="3" />
<View
android:layout_width="0dp"
android:layout_height="10dp" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="#b2b2b2" />
</LinearLayout>
</ScrollView>
</RelativeLayout>