1
アクション・バーからナビゲーション・ドロワー・アイコン(ハンバーガー)をタブ・レイアウトに移動して、例えば提供されるようにする必要があります。これはリストスクロールで実行する必要があります。アクションバーからタブレイアウトにビューを移動する可能性はありますか?あなたはこのようなツールバーのtabLayoutを含めることができナビゲーション・ドロワー・アイコン(ハンバーガー)を移動
アクション・バーからナビゲーション・ドロワー・アイコン(ハンバーガー)をタブ・レイアウトに移動して、例えば提供されるようにする必要があります。これはリストスクロールで実行する必要があります。アクションバーからタブレイアウトにビューを移動する可能性はありますか?あなたはこのようなツールバーのtabLayoutを含めることができナビゲーション・ドロワー・アイコン(ハンバーガー)を移動
:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
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">
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
android:background="@color/colorPrimary"
android:layout_weight="1">
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="top"
app:tabIndicatorColor="@color/colorAccent"
app:tabMaxWidth="0dp"
app:tabGravity="fill"
app:tabMode="scrollable"
android:background="@color/colorPrimary" />
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>
あなたがあるカスタムタブのビューを使用することができます画像をクリックして画像をクリックすると、左メニューを開く方法が呼び出されます –
ツールバーを実装している可能性があります –