gpt4 book ai didi

Android NavigationDrawer 和工具栏

转载 作者:行者123 更新时间:2023-11-29 20:58:17 26 4
gpt4 key购买 nike

请帮我创建Toolbar@+id/left_drawer 上面有哪些内容?是否可以? enter image description here

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<android.support.v7.widget.Toolbar
android:id="@+id/my_awesome_toolbar"
style="@style/MainTheme.ToolBar"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<com.astuetz.RobottoRegularTextView
android:id="@+id/toolbar_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:textColor="@android:color/white"
android:textSize="20sp" />

<com.astuetz.RobottoLightTextView
android:id="@+id/toolbar_subtitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:singleLine="true"
android:textColor="@android:color/white"
android:textSize="@dimen/small_text"
android:visibility="gone" />
</LinearLayout>
</android.support.v7.widget.Toolbar>

<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>

<!--ImageView for test -->
<ImageView
android:id="@+id/left_drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="start"
android:layout_marginTop="0dp"
android:layout_marginBottom="0dp"
android:scaleType="centerCrop"
android:adjustViewBounds="true"
android:src="@drawable/background" />

最佳答案

@hata 非常接近正确答案。你需要在 DrawerLayout 之后放置 Toolbar,使 Toolbar 的背景透明,并在 @+id/content_frame 之前创建表单> 在 DrawerLayout 中,高度为 ?attr/actionBarSize,背景色与 Toolbar 一样。这是我对你的解决方案

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

<com.kpi.timetable.views.HackyDrawerLayout
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<FrameLayout
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/YOUR_ACTIONBAR_COLOR"/>

<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>


<ImageView
android:id="@+id/left_drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="start"
android:layout_marginBottom="0dp"
android:layout_marginTop="0dp"
android:adjustViewBounds="true"
android:scaleType="centerCrop"
android:src="@drawable/background" />
</com.kpi.timetable.views.HackyDrawerLayout>

<!-- in your MainTheme.ToolBar style set background -->
<!-- color to "@android:color/transparent" or set it here -->
<!-- as android:background="@android:color/transparent" -->
<android.support.v7.widget.Toolbar
android:id="@+id/my_awesome_toolbar"
style="@style/MainTheme.ToolBar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<com.astuetz.RobottoRegularTextView
android:id="@+id/toolbar_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Расписание"
android:textColor="@android:color/white"
android:textSize="20sp" />

<com.astuetz.RobottoLightTextView
android:id="@+id/toolbar_subtitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:singleLine="true"
android:textColor="@android:color/white"
android:textSize="@dimen/small_text"
android:visibility="gone" />
</LinearLayout>
</android.support.v7.widget.Toolbar>
</RelativeLayout>

关于Android NavigationDrawer 和工具栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26958963/

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