android - 如何使用 DrawerLayout 在 ActionBar/Toolbar 上方和状态栏下方显示?

标签 android navigation-drawer toolbar android-appcompat statusbar

我在新 Material 设计中看到了Side Nav spec您可以在操作栏上方和状态栏后面显示抽屉。我该如何实现?

最佳答案

框架中的新功能和支持库正好允许这样做。共有三个“拼图”:

  1. 使用 Toolbar以便您可以将操作栏嵌入到 View 层次结构中。
  2. 制作 DrawerLayout 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>

然后在您的 Activity/Fragment 中:

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 主题来做到这一点:

values-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">被用来代替

<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;
}

关于android - 如何使用 DrawerLayout 在 ActionBar/Toolbar 上方和状态栏下方显示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26440879/

相关文章:

java - 使用选项卡和 fragment 处理导航项

android - 启动 ActionMode 时的两个操作栏

android - 当我尝试调用 Web 服务连接方法时应用程序崩溃

带抽屉导航的工具栏上的 Android 'back' 操作

android - 向 AppCompatActivity 添加抽屉导航

android - 如何更改android中工具栏上关闭搜索按钮的位置并在展开时设置动画?

android - 如何测试点击触发的AsyncTask?

java - 处理聊天输入或停止输入事件 (Android)

android - 如何为android创建自定义语言包?

android - 抽屉导航列表中的下划线菜单项