Fragment
以前は、自分のActivity
in にシングルを追加していましたonCreate
。を使用するように切り替えましViewPager
たFragmentPagerAdapter
。アクションバーの「ハンバーガー」は常に矢印になり、引き出しを開いたときにアニメーションしなくなりました。
ActionBarDrawerToggle
引き出しが閉じているときに「ハンバーガー」になり、開くときに矢印にアニメーション化し、閉じたときに「ハンバーガー」にアニメーション化して戻すにはどうすればよいViewPager
ですか?
編集:Activity
これが(hereSlidingTabLayout
から取得した)のレイアウトです
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/itp_blue">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<com.itpvoip.dev.orange.widgets.SlidingTabLayout
android:id="@+id/sliding_tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<android.support.v4.view.ViewPager
android:id="@+id/drawer_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>
<ListView
android:id="@+id/drawer_list"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:choiceMode="singleChoice"
android:paddingTop="8dp"
android:paddingBottom="8dp"
android:divider="@android:color/transparent"
android:dividerHeight="0dp"
android:background="?colorPrimaryDark">
</ListView>
</android.support.v4.widget.DrawerLayout>