为了账号安全,请及时绑定邮箱和手机立即绑定

如何更改抽屉标题?

如何更改抽屉标题?

一只甜甜圈 2021-12-30 17:21:14
我是 Android 新手,正在开发一个应用程序。我正在尝试开发一个具有抽屉布局的应用程序。一切都很好,但我无法更改屏幕截图上标记的抽屉菜单的标题。
查看完整描述

2 回答

?
一只名叫tom的猫

TA贡献1906条经验 获得超3个赞

查看完整回答
反对 回复 2021-12-30
?
拉莫斯之舞

TA贡献1820条经验 获得超10个赞

更多定制

如果您想为您的抽屉进行更多定制。您可以为 Drawer 创建一个布局并将其包含在android.support.design.widget.NavigationView

Like this 中


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


     ...........

                 <!- Drawer >


     <android.support.design.widget.NavigationView

        android:id="@+id/nav_view"

        android:layout_width="150dp"

        android:layout_height="match_parent"

        android:fitsSystemWindows="true"

        android:layout_gravity="left"

        >

           <!--- Your custom layout >

          <include layout="@layout/custom_drawer_layout"

              android:id="@+id/filterDrawer"

              android:layout_height="match_parent"

              android:layout_width="match_parent"

              android:layout_gravity="end"

           />


    </android.support.design.widget.NavigationView>



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

然后你可以创建一个布局 custom_drawer_layout


custom_drawer_layout.xml


<RelativeLayout>

     <spinner/>

     <button/>

     <whatever/>

</RelativeLayout>

希望你能明白。

你可以在这里看到一个相关的项目


查看完整回答
反对 回复 2021-12-30
  • 2 回答
  • 0 关注
  • 226 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信