在工具栏中折叠工具栏布局中心 TextView [英] CollapsingToolbarLayout center TextView in Toolbar

查看:61
本文介绍了在工具栏中折叠工具栏布局中心 TextView的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想要工具栏中的toolbar_title布局中心,但看起来左边有一些边距,如果我删除CollapsingToolbarLayout就可以了.为了使toolbar_title 文本居中,我在代码中手动设置了too​​lbar_title 的边距,但是只有在片段恢复后我toolbar_title.getX() 才能得到正确的值,所以我postDelayed 50 ms 来做到这一点.

现在问题来了:如何以更好的方式将 CoordinatorLayout 中的 toolbar_title 居中?

添加属性后:

I want toolbar_title layout center in toolbar, but itlooks like there is some margin on left, if I remove CollapsingToolbarLayout it is ok. Inorder to center toolbar_title text I set toolbar_title's margin right manualy in code, but the only after the fragment resumed I toolbar_title.getX() can get the correct value, so I postDelayed 50 ms to do this.

now ther is the question: how to center toolbar_title in CoordinatorLayout on a better way?

<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"
xmlns:tools="http://schemas.android.com/tools">

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <android.support.design.widget.CollapsingToolbarLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:expandedTitleMarginStart="?attr/actionBarSize"
        app:layout_scrollFlags="scroll|exitUntilCollapsed">

        <LinearLayout
            android:id="@+id/layout_header"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#f5f5f5"
            android:orientation="vertical"
            app:layout_collapseMode="parallax">
        </LinearLayout>

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

            <TextView
                android:id="@+id/toolbar_title"
                style="@style/TextAppearance.AppCompat.Widget.ActionBar.Title"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:textColor="@android:color/white"
                android:textSize="18sp"
                tools:text="title"/>

        </android.support.v7.widget.Toolbar>
    </android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>

<android.support.v7.widget.RecyclerView
    android:id="@+id/swipe_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

解决方案

You just need to add below attributes in your Toolbar.

app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"

See similar thread on stackoverflow: Android API 21 Toolbar Padding

See title textview position before and after attributes adding in toolbar.

Before adding attributes:

After adding attributes:

这篇关于在工具栏中折叠工具栏布局中心 TextView的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆