android - (tablayout) 当 editText 获得焦点时,制表符出现在键盘上

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

我设置了 tabLayout 和 ViewPager,它有 5 个 FragmentstabLayoutandroid:layout_gravity 设置为 bottom 。第三个 fragment 有 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> 

第三个 fragment 布局:

<?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> 

最佳答案

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

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

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

希望这对您有所帮助。

关于android - (tablayout) 当 editText 获得焦点时,制表符出现在键盘上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38545450/

相关文章:

android - 使用 arrayadapter 过滤 ListView

java - 构造函数未定义错误 - Java

Android 工具栏返回启用和设置字幕

android - 我可以得到编辑文本离开事件吗

android - 如何从 ListView 中获取值

android - 在图表的 x 轴上设置字符串值?

java - 按下后退按钮时,上一个 fragment 显示空白屏幕(使用多个 fragment 事务)

Android 回到抽屉导航中的第一个 fragment

android - RecyclerView 中的 EditText 值在第 5 个位置后给出相同的值

android - 如何在App主视图上添加边框半径?