我有一个布局内容如下的活动:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:minHeight="?attr/actionBarSize"
style="@style/ToolBarStyle.Event" />
<com.mypackage.corecode.ui.view.SlidingTabLayout
android:id="@+id/sliding_tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/primary_color" />
<android.support.v4.view.ViewPager
android:id="@+id/vendor_main_tabview_pager"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
</LinearLayout>
在 viewpager 内部,我有一个片段,其布局如下:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:weightSum="3"
android:orientation="horizontal">
<EditText
android:theme="@style/ScrollableContentThemeNoActionBar"
android:id="@+id/edit_text_vendor_sms_phone_number"
android:layout_width="0dp"
android:layout_weight="2"
android:layout_height="wrap_content"
android:inputType="number" />
<Button
android:id="@+id/button_send_sms"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
/>
</LinearLayout>
</LinearLayout>
</ScrollView>
当片段内的内容不适合屏幕时,滚动视图允许用户查看屏幕下方的内容。(按预期工作)
问题是当edittext获得焦点时,键盘与edittext区域重叠,而不是滚动视图导致内容滚动。
我希望片段能够处理显示的键盘和滚动视图以适应屏幕上的键盘。
还是我错了,活动对键盘负责?由于activity layout中的root view是linearlayout,是不是限制了展开?
我尝试用滚动视图包装活动布局的全部内容,但是如果我不给它一个固定的大小,这次 viewpager 不会出现在屏幕上。即使我这样做了,我最终还是在主布局的滚动视图下的片段内有一个滚动视图,并且键盘仍然悬停在编辑文本上。
我在这里有点迷失,我的目标是能够在编辑文本获得焦点时滚动片段内容,而是键盘当前与编辑文本重叠。