android - 将自定义布局添加到无边距的 ActionBar/Toolbar

标签 android android-5.0-lollipop android-toolbar

我想创建一个自定义高度工具栏,它可以正常工作,直到我向其中添加内容。然后我的内容被调整到后退箭头和操作栏按钮之间。

如何使我的内容占据整个宽度,以便创建如下所示的布局?我猜“+”图标需要在工具栏的父布局中?

文档说:

The application may add arbitrary child views to the Toolbar. They will appear at this position within the layout. If a child view's Toolbar.LayoutParams indicates a Gravity value of CENTER_HORIZONTAL the view will attempt to center within the available space remaining in the Toolbar after all other elements have been measured.

但我没有将重力设置为 CENTER_HORIZONTAL... Layout I want

 <android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:iosched="http://schemas.android.com/apk/res-auto"
        iosched:theme="@style/ActionBarThemeOverlay"

        iosched:popupTheme="@style/ActionBarPopupThemeOverlay"
        android:id="@+id/toolbar_actionbar"
        android:background="@color/theme_primary"
        iosched:titleTextAppearance="@style/ActionBar.TitleText"
        iosched:contentInsetStart="16dp"
        iosched:contentInsetEnd="16dp"
        android:layout_width="match_parent"
        android:layout_height="128dp" >
        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

        ... My Content

目前,当左边距设置为 168 时,我的布局最终是这样的:

enter image description here layout

最佳答案

我不确定您是否还需要这方面的帮助,但它不仅在 android-5.0-lollipop 中对未回答问题的投票数最多。标签,还有 android-toolbar立即标记。所以,我想我会给它一个。

这种布局很容易实现,尤其是使用新的 Design Support Library .

实现

你的层次结构的根需要是 CoordinatorLayout .

根据文档:

Children of a CoordinatorLayout may have an anchor. This view id must correspond to an arbitrary descendant of the CoordinatorLayout, but it may not be the anchored child itself or a descendant of the anchored child. This can be used to place floating views relative to other arbitrary content panes.

所以,我们将使用它来定位 FloatingActionButton它需要去哪里。

剩下的就很简单了。我们将使用垂直 LinearLayout 来定位 Toolbar、文本容器、选项卡容器,然后是 ViewPager。因此,完整的布局如下所示:

<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#181E80"
        android:orientation="vertical">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:minHeight="?attr/actionBarSize" />

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="48dp"
            android:paddingTop="8dp">

            <ImageView
                android:id="@android:id/icon"
                android:layout_width="54dp"
                android:layout_height="54dp"
                android:layout_alignParentStart="true"
                android:layout_marginStart="16dp"
                android:importantForAccessibility="no"
                android:src="@drawable/logo" />

            <TextView
                android:id="@android:id/text1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignTop="@android:id/icon"
                android:layout_marginStart="14dp"
                android:layout_toEndOf="@android:id/icon"
                android:text="Chelsea"
                android:textColor="@android:color/white"
                android:textSize="24sp" />

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_alignStart="@android:id/text1"
                android:layout_below="@android:id/text1"
                android:text="England - Premier League"
                android:textColor="@android:color/white"
                android:textSize="12sp" />

        </RelativeLayout>

        <FrameLayout
            android:id="@+id/tab_container"
            android:layout_width="match_parent"
            android:layout_height="90dp"
            android:background="#272F93">

            <android.support.design.widget.TabLayout
                android:id="@+id/tabs"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_gravity="bottom"
                app:tabContentStart="70dp"
                app:tabGravity="center"
                app:tabIndicatorColor="#F1514A"
                app:tabMode="scrollable"
                app:tabSelectedTextColor="@android:color/white"
                app:tabTextColor="#99ffffff" />

        </FrameLayout>

        <android.support.v4.view.ViewPager
            android:id="@+id/pager"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />

    </LinearLayout>

    <android.support.design.widget.FloatingActionButton
        android:layout_width="60dp"
        android:layout_height="60dp"
        android:layout_margin="16dp"
        android:src="@drawable/ic_star_white_24dp"
        app:backgroundTint="#F1514A"
        app:borderWidth="0dp"
        app:elevation="8dp"
        app:layout_anchor="@id/tab_container"
        app:layout_anchorGravity="top|right|end" />

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

没有太多要补充的了,我唯一要提到的另一件事是如何使用 TabLayout .如果您像我们一样使用 ViewPager,您可能会调用两者之一:

备注

我只是盯着尺寸,试图尽可能地匹配图片。

结果

results

关于android - 将自定义布局添加到无边距的 ActionBar/Toolbar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26861843/

相关文章:

android - 在 Android 5.0 API 21 Lollipop 中,Seek Bar thumb 不透明

android - 如何在 CollapsingToolbarLayout 折叠时启用后退按钮

android - 使用折叠工具栏和选项卡滚动

android - ConstraintSet 中 clone() 的不同实现有什么区别?

android - 在没有 Firebase 的情况下管理 GCM 的 API key ?

android - 动画监听器不适用于按钮单击

android - 动画 Activity 变化为循环显示

android - java.lang.IllegalStateException : Unable to create layer for v 错误

java - 如何从 fragment 访问 Activity 的 ImageView ?

java - DBFlow和Butterknife冲突