导航栏中的Android图标

时间:2016-11-27 18:20:26

标签: android navigation icons drawer

我怎么能在android studio中做这样的事情:

Navigation bar with Title and Icon and Menue

我想有一个导航栏,您可以在其中看到名称,图标以及打开导航抽屉的背景:D

(图片是在Figma中制作的)

1 个答案:

答案 0 :(得分:1)

将重力设置为在DrawerLayout内的NavigationView中结束。并将自定义视图添加到工具栏。

<DrawerLayout ...>
  <Content>
  <Toolbar>
     <LinearLayout
        android:orientation="horizontal">
        <!-- Here goes the Image -->
        <ImageView .../>  
        <!--Here goes the title -->
        <TextView ...
           android:gravity="center"/>
    </LinearLayout>
  </Toolbar>
   <MainContent .../>
  </Content>
  <NavigationView 
    android:layout_gravity="end"
    .../>
</DrawerLayout>

这应该让你开始。