Установите PagerTabstrip в нижней части экрана
Обычно PagerTabStrip отображается в верхней части экрана чуть ниже панели приложений. Теперь я хочу, чтобы PagerStrip находился внизу, как я могу установить его в нижней части экрана? Помоги мне.. Код:
<LinearLayout
android:id="@+id/main_container"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".AppHomeScreen"
xmlns:app="http://schemas.android.com/apk/res-auto">
<include
android:id="@+id/appbar"
layout="@layout/app_bar_layout"
/>
<android.support.v4.widget.DrawerLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/drawer">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/content_container">
<android.support.v4.view.ViewPager
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.view.PagerTabStrip
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="#0ff"
android:id="@+id/pager_tabs"
android:layout_alignParentBottom="true"
>
</android.support.v4.view.PagerTabStrip>
</android.support.v4.view.ViewPager>
</RelativeLayout>
<fragment
android:layout_width="200dp"
android:layout_height="match_parent"
app:layout="@layout/fragment_navigation_drawer"
android:layout_gravity="right"
android:name="neppro.com.busapp.NavigationDrawerFragment"
tools:layout="@layout/fragment_navigation_drawer"/>
</android.support.v4.widget.DrawerLayout>
Теперь это мой последний обновленный код, в котором я использовал относительную компоновку для viewPager, но я уже пробовал использовать LinearLayout.
1 ответ
Установите атрибут layout_gravity на вашем PagerTabStrip как "нижний"
android:layout_gravity="bottom"