(tablayout) 在 editText 获得焦点时,Tab 会覆盖在键盘上方

7
我已经使用ViewPager设置了带有5个Fragments的tabLayout。tabLayout的android:layout_gravity设置为bottom。第三个fragment有一个editText,当它被聚焦时,我的标签会覆盖在键盘上方。 没有EditText的TabLayout 带有EditText的TabLayout 主要布局:
    <?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> 
2个回答

11

打开 AndroidManifest.xml 文件并在你的activity标签中添加以下代码:android:windowSoftInputMode="adjustPan"

如果这个方法不起作用,尝试使用以下代码:android:windowSoftInputMode="adjustNothing"

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

希望这可以帮到你。


0
TabLayout放置在ToolBar下方并位于ViewPager之上。

请查看此处:https://dev59.com/hVwX5IYBdhLWcg3wyCDT - Itiel Maimon

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接