如何在橫向模式下將工具欄和Tablayout組合起來,如youtube應用程序中所示?我似乎無法爲此找到明確的答案。如何在橫向上組合工具欄和TabLayout?
我目前的佈局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/ThemeOverlay.AppCompat.Dark"/>
<android.support.design.widget.TabLayout
android:id="@+id/tabLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
app:tabMode="fixed"
app:tabGravity="fill"/>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:background="@color/transparent"/>
</LinearLayout>
這是一個從標籤的屏幕截圖,因爲我看不到這種行爲我的設備 –
提示:工具欄是一個'ViewGroup'。你可以把'TabLayout'放在裏面。在橫向模式下平板電腦的佈局中。 –
這確實是Lollypop設備上最新版應用的屏幕截圖。它處於橫向模式。 –