如何使用ViewPager制作可见的工具栏?

时间:2016-01-12 01:16:36

标签: android android-layout android-activity android-viewpager android-toolbar

我正在阅读" The Big Nerd Ranch Guide" 11章,我正在编写与Material Design非常相似的应用程序。应用程序有两个活动 - 列表和项目拆除此列表。在detalization活动中,使用以下代码在ViewPager方法中实施onCreate

mViewPager = new ViewPager(this);
mViewPager.setId(R.id.viewPager);
setContentView(mViewPager);

我在setContentView中的理解我们没有使用XML标记,因此我丢失了Toolbar

scr1 scr2

在本书的下一章中,应用程序有ActionBar。如何在退出活动中返回Toolbar

book scr

1 个答案:

答案 0 :(得分:2)

您丢失了TabLayout和FAB,因为您只使用ViewPager调用了setContentView()

如果你想拥有一个ViewPager和一个TabLayout以及一个FloatingActionButton,只需在包含所有三个的XML布局上调用setContentView()。像这样的东西会把TabLayout放在最上面:

<RelativeLayout
    android:id="@+id/main_layout"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:background="?attr/colorPrimary"
        android:elevation="6dp"
        android:minHeight="?attr/actionBarSize"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>

    <android.support.design.widget.TabLayout
        android:id="@+id/tab_layout"
        app:tabMode="fixed"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/toolbar"
        android:background="?attr/colorPrimary"
        android:elevation="6dp"
        app:tabTextColor="#d3d3d3"
        app:tabSelectedTextColor="#ffffff"
        app:tabIndicatorColor="#ff00ff"
        android:minHeight="?attr/actionBarSize"
        />

    <android.support.v4.view.ViewPager
        android:id="@+id/viewpager"
        android:layout_width="match_parent"
        android:layout_height="fill_parent"
        android:layout_below="@id/tab_layout"/>

</RelativeLayout>