(tablayout)当editText聚焦时,选项卡会通过键盘

时间:2016-07-23 19:01:56

标签: android android-fragments android-edittext android-viewpager android-tablayout

我使用ViewPager setUp tabLayout,其中有Fragments。 将tabLayout设置为android:layout_gravity的{​​{1}}。第三个片段有bottom,当聚焦时,我的标签会越过键盘。

Tablayout without EditText

TabLayout with EditText

主要布局:

editText

第三段片段布局:

    <?xml version="1.0" encoding="utf-8"?>
    <android.support.design.widget.CoordinatorLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/coordinatorLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <android.support.design.widget.AppBarLayout
            android:id="@+id/appBarLayout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

         <include
              android:id="@+id/t"
             layout="@layout/toolbar"/>


        </android.support.design.widget.AppBarLayout>

  <android.support.v4.view.ViewPager
    android:id="@+id/viewPager"
    android:layout_width="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    android:layout_height="match_parent"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"/>

  <android.support.design.widget.TabLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tab="http://schemas.android.com/tools"
    android:layout_gravity="bottom"
    app:tabGravity="fill"
    android:background="@color/colorPrimary"
    android:layout_alignParentBottom="true"
    android:id="@+id/tabs"

    app:layout_collapseMode="parallax"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"

    xmlns:android="http://schemas.android.com/apk/res/android">


    </android.support.design.widget.TabLayout></android.support.design.widget.CoordinatorLayout> 

2 个答案:

答案 0 :(得分:9)

打开 AndroidManifest.xml 并添加到您的活动代码中 android:windowSoftInputMode="adjustPan"

如果这不起作用 android:windowSoftInputMode="adjustNothing"

这将阻止软键盘调整布局。

希望这有帮助。

答案 1 :(得分:0)

TabLayout置于ToolBar下方并ViewPager