DrawerLayout を使用して ActionBar/Toolbar の上やステータスバーの下に表示するにはどうすればよいですか? 質問する

DrawerLayout を使用して ActionBar/Toolbar の上やステータスバーの下に表示するにはどうすればよいですか? 質問する

新しいマテリアルデザインで見たサイドナビ仕様ドロワーをアクション バーの上とステータス バーの後ろに表示できます。これを実装するにはどうすればよいでしょうか?

ベストアンサー1

フレームワークとサポート ライブラリの新しい機能により、まさにこれが可能になります。パズルのピースは 3 つあります。

  1. 使用ツールバーアクション バーをビュー階層に埋め込むことができます。
  2. 制作引き出しレイアウト fitsSystemWindowsシステム バーの背後に配置されるようにします。
  3. Theme.Materialの通常のステータス バーの色付けを無効にして、代わりに DrawerLayout がそこに描画できるようにします。

新しい appcompat を使用すると想定します。

まず、レイアウトは次のようになります。

<!-- The important thing to note here is the added fitSystemWindows -->
<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/my_drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <!-- Your normal content view -->
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <!-- We use a Toolbar so that our drawer can be displayed
             in front of the action bar -->
        <android.support.v7.widget.Toolbar  
            android:id="@+id/my_awesome_toolbar"
            android:layout_height="wrap_content"
            android:layout_width="match_parent"
            android:minHeight="?attr/actionBarSize"
            android:background="?attr/colorPrimary" />

        <!-- The rest of your content view -->

    </LinearLayout>

    <!-- Your drawer view. This can be any view, LinearLayout
         is just an example. As we have set fitSystemWindows=true
         this will be displayed under the status bar. -->
    <LinearLayout
        android:layout_width="304dp"
        android:layout_height="match_parent"
        android:layout_gravity="left|start"
        android:fitsSystemWindows="true">

        <!-- Your drawer content -->

    </LinearLayout>

</android.support.v4.widget.DrawerLayout>

次に、アクティビティ/フラグメントで次の操作を実行します。

public void onCreate(Bundled savedInstanceState) {
    super.onCreate(savedInstanceState);

    // Your normal setup. Blah blah ...

    // As we're using a Toolbar, we should retrieve it and set it
    // to be our ActionBar
    Toolbar toolbar = (...) findViewById(R.id.my_awesome_toolbar);
    setSupportActionBar(toolbar);

    // Now retrieve the DrawerLayout so that we can set the status bar color.
    // This only takes effect on Lollipop, or when using translucentStatusBar
    // on KitKat.
    DrawerLayout drawerLayout = (...) findViewById(R.id.my_drawer_layout);
    drawerLayout.setStatusBarBackgroundColor(yourChosenColor);
}

次に、DrawerLayout がステータス バーの背後に表示されていることを確認する必要があります。これを行うには、values-v21 テーマを変更します。

値-v21/themes.xml

<style name="Theme.MyApp" parent="Theme.AppCompat.Light.NoActionBar">
    <item name="android:windowDrawsSystemBarBackgrounds">true</item>
    <item name="android:statusBarColor">@android:color/transparent</item>
    <item name="android:windowTranslucentStatus">true</item>
</style>

注:<fragment android:name="fragments.NavigationDrawerFragment">の代わりにaが使用される場合

<LinearLayout
    android:layout_width="304dp"
    android:layout_height="match_parent"
    android:layout_gravity="left|start"
    android:fitsSystemWindows="true">

    <!-- Your drawer content -->

</LinearLayout>

実際のレイアウトでは、メソッドfitsSystemWindows(boolean)から返されるビューを呼び出すと、目的の効果が得られますonCreateView

@Override
public View onCreateView(LayoutInflater inflater, 
                         ViewGroup container,
                         Bundle savedInstanceState) {
    View mDrawerListView = inflater.inflate(
        R.layout.fragment_navigation_drawer, container, false);
    mDrawerListView.setFitsSystemWindows(true);
    return mDrawerListView;
}

おすすめ記事