Overlap or Override bottom title-strip with keyboard

143 Views Asked by At

<android.support.v4.view.ViewPager
    android:id="@+id/vp_pager"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_above="@+id/st_tabs_main"
    android:layout_below="@+id/fl_toolbar" />

<in.lastlocal.l2v1.tabs.SlidingTabLayout
    android:id="@+id/st_tabs_main"
    android:layout_width="match_parent"
    android:clipChildren="true"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true" />
</RelativeLayout>`

This is simple xml I'm using for bottom title, stripped with view pager. But when I click edit text of fragment page, keyboard is popping and pushing SlidingTab layout with, which I don't want how to achieve that?

1

There are 1 best solutions below

1
On

Try set android:windowSoftInputMode to adjustNothing or adjustPan in manifest at your activity.

    <activity
        android:windowSoftInputMode="adjustNothing"
        android:label="@string/app_name"/>