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デバイスの最新バージョンのアプリからのスクリーンショットです。風景モードです。 –