gpt4 book ai didi

android - 如何在Bottomsheet布局中自定义工具栏?

转载 作者:行者123 更新时间:2023-12-02 12:09:51 25 4
gpt4 key购买 nike

我在 CoordinatorLayout 中使用 CollapsingToolbarLayout 作为 Bottom Sheet 的布局。布局看起来像这样 -

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/bottomSheet"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/darkBackgroundMainTranslucent"
app:behavior_hideable="true"
app:layout_behavior="@string/bottom_sheet_behavior">

<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="@dimen/detail_backdrop_height"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:fitsSystemWindows="true">

<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
android:fitsSystemWindows="true"
app:contentScrim="@color/colorScrim"
app:expandedTitleMarginStart="48dp"
app:expandedTitleMarginEnd="64dp">

<ImageView
android:id="@+id/backdrop"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:fitsSystemWindows="true"
android:contentDescription="@string/poster_string"
app:layout_collapseMode="parallax" />

<android.support.v7.widget.Toolbar
android:id="@+id/bottomsheet_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:popupTheme="@style/AppTheme.PopupOverlay"
app:layout_collapseMode="pin" />

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

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

<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:id="@+id/nestedScrollView">

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

<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/card_margin">

<LinearLayout
style="@style/Widget.CardContent"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Title"
android:textAppearance="@style/TextAppearance.AppCompat.Title" />

<TextView
android:id="@+id/bottomsheet_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textIsSelectable="true"/>

</LinearLayout>

</android.support.v7.widget.CardView>


</LinearLayout>

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

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

我想知道是否可以在 CollapsingToolbarLayout 内自定义工具栏以添加向上按钮并设置其标题,而无需将该工具栏设置为 supportactionbar。

最佳答案

您可以通过 xml 将图标/图像/按钮放入工具栏中,如下所示:

<android.support.v7.widget.Toolbar
android:id="@+id/bottomsheet_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:popupTheme="@style/AppTheme.PopupOverlay"
app:layout_collapseMode="pin">

<ImageButton
... your usual crud height/width ...
android:id="@+id/contact_detail_edit/>

<TextView />

</android.support.v7.widget.Toolbar>

然后通过工具栏访问它们,如下所示:

        Toolbar bottomSheetToolbar = (Toolbar) bottomSheetLayout.findViewById(R.id.bottomsheet_toolbar);
ImageButton contact_detail_edit = (ImageButton)bottomSheetToolbar.findViewById(R.id.contact_detail_edit);
ImageButton contact_detail_favorite = (ImageButton)bottomSheetToolbar.findViewById(R.id.contact_detail_favorite);

关于android - 如何在Bottomsheet布局中自定义工具栏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36060594/

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