gpt4 book ai didi

java - 带工具栏的 Android 抽屉式菜单

转载 作者:行者123 更新时间:2023-12-02 04:46:57 26 4
gpt4 key购买 nike

是否可以在菜单列表项上方的抽屉菜单中添加第二个工具栏?我希望工具栏与滑动菜单保持一致,并与原始内容和工具栏重叠。我的代码:

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MainActivity">

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<!-- our toolbar -->
<include layout="@layout/toolbar" />

<!-- frameLayout to display Fragments -->
<FrameLayout
android:id="@+id/frame_container"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>

<!-- listView to display slider menu -->
<!-- I want to add here a toolbar that will stick to my slide menu-->
<ListView
android:id="@+id/list_slidermenu"
android:layout_width="300dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@color/white"
android:choiceMode="singleChoice"
android:divider="@null"/>

最佳答案

我假设您想在滑动抽屉菜单中放置一个工具栏以获得漂亮的标题?

您可以做的一件事不一定是使用工具栏,但您可以创建一个单独的布局文件,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="56dp"
android:background="@color/blue"
android:orientation="vertical" >

<TextView
android:id="@+id/tvENumData"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_margin="8dp"
android:text="Options"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="#fff"
android:textSize="20sp"
android:textStyle="bold" />

</RelativeLayout>

</LinearLayout>

然后通过执行以下操作将其作为标题添加到滑动菜单:

ViewGroup header = (ViewGroup) inflater.inflate(R.layout.drawer_title, container, false);
mDrawerListView.addHeaderView(header);

这是结果:

enter image description here

有了这个,您可以为您的滑动菜单提供一个非常漂亮、易于自定义的标题,如果这不是您想要的并且确实想使用工具栏,那么我很抱歉提出这个建议,我只是想提供帮助。

关于java - 带工具栏的 Android 抽屉式菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29595486/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com