我怎么能在android studio中做这样的事情:
我想有一个导航栏,您可以在其中看到名称,图标以及打开导航抽屉的背景:D
(图片是在Figma中制作的)
答案 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>
这应该让你开始。