【问题标题】:(tablayout) Tabs come over the keyboard when editText is focused(tablayout)当editText获得焦点时,选项卡会出现在键盘上
【发布时间】:2016-07-23 19:01:55
【问题描述】:

我已经使用 ViewPager 设置了 tabLayout,其中有 5 个 FragmentstabLayoutandroid:layout_gravity 设置为 bottom 。第三个片段有editText,当它聚焦时,我的标签会出现在键盘上。

Tablayout without EditText

TabLayout with 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> 

第三个片段布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">

    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="40dp"
        android:hint="Enter something"
        />
</LinearLayout> 

【问题讨论】:

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


    【解决方案1】:

    打开 AndroidManifest.xml 并添加到您的活动标签 android:windowSoftInputMode="adjustPan"

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

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

    希望这会有所帮助。

    【讨论】:

      【解决方案2】:

      TabLayout 放在ToolBar 下方并放在ViewPager 上方

      【讨论】:

      猜你喜欢
      • 2016-05-20
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2011-03-22
      • 1970-01-01
      • 2020-03-22
      • 1970-01-01
      • 2013-07-16
      相关资源
      最近更新 更多