setSupportActionBar

现在是在xml写一个 toolbar,完事代码里 setSupportActionBar(toolbar)
实际使用中应该会发现,xml里toolbar里如果你添加了一些view,这些view的最左边并不是屏幕的左边缘。

toolbar代码如下,我给textview弄了个背景

                <android.support.v7.widget.Toolbar
                    android:id="@+id/toolbar"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    app:layout_collapseMode="pin"
                    android:paddingTop="24dp"
                    app:popupTheme="@style/ThemeOverlay.AppCompat.Light">

                    <TextView
                        android:id="@+id/tv_title"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:layout_gravity="center"
                        android:gravity="center"
                        android:text="title"
                        android:background="#44000000"
                        android:textColor="#fff" />

                    <ImageView
                        android:layout_width="30dp"
                        android:layout_height="30dp"
                        android:layout_gravity="center_vertical|right"
                        android:src="@mipmap/ic_launcher_round" />
                </android.support.v7.widget.Toolbar>

如图所示,可以看到阴影距离左边是有一段距离的。


image.png

一路点进去,可以发现在AppCompatDelegateImplV9类里setSupportActionBar的具体实现
代码如下

    public void setSupportActionBar(Toolbar toolbar) {
      //省略部分代码
        if (toolbar != null) {
            final ToolbarActionBar tbab = new ToolbarActionBar(toolbar,
                    ((Activity) mOriginalWindowCallback).getTitle(), mAppCompatWindowCallback);
            mActionBar = tbab;
            mWindow.setCallback(tbab.getWrappedWindowCallback());
        } else {
            mActionBar = null;
            // Re-set the original window callback since we may have already set a Toolbar wrapper
            mWindow.setCallback(mAppCompatWindowCallback);
        }

        invalidateOptionsMenu();
    }

上边代码可以看出,new了一个ToolbarActionBar,继续往下走

    ToolbarActionBar(Toolbar toolbar, CharSequence title, Window.Callback windowCallback) {
        mDecorToolbar = new ToolbarWidgetWrapper(toolbar, false);
        mWindowCallback = new ToolbarCallbackWrapper(windowCallback);
        mDecorToolbar.setWindowCallback(mWindowCallback);
        toolbar.setOnMenuItemClickListener(mMenuClicker);
        mDecorToolbar.setWindowTitle(title);
    }

这里又new了一个ToolbarWidgetWrapper的东西
然后在构造方法里发现了这样的属性,看名字很像

final TintTypedArray a = TintTypedArray.obtainStyledAttributes(toolbar.getContext(),
                    null, R.styleable.ActionBar, R.attr.actionBarStyle, 0);

     final int contentInsetStart = a.getDimensionPixelOffset(
                    R.styleable.ActionBar_contentInsetStart, -1);
            final int contentInsetEnd = a.getDimensionPixelOffset(
                    R.styleable.ActionBar_contentInsetEnd, -1);
            if (contentInsetStart >= 0 || contentInsetEnd >= 0) {
                mToolbar.setContentInsetsRelative(Math.max(contentInsetStart, 0),
                        Math.max(contentInsetEnd, 0));
            }

试着在xml里contentInsetStart=0dp发现那个偏移没了,那应该就是了。

顺道看下默认值

我用的v7 27的版本,在design库的res的values下找

<item name="contentInsetStart">@dimen/abc_action_bar_content_inset_material</item>
      <item name="contentInsetStartWithNavigation">@dimen/abc_action_bar_content_inset_with_nav</item>
      <item name="contentInsetEnd">@dimen/abc_action_bar_content_inset_material</item>

<dimen name="abc_action_bar_content_inset_material">16dp</dimen>
  <dimen name="abc_action_bar_content_inset_with_nav">72dp</dimen>

我们还是回到toolbar看下,他的layout是咋处理这些控件的

 protected void onLayout(boolean changed, int l, int t, int r, int b){
//省略。。这里只考虑默认的布局从左到右,不考虑从右到左的布局
        if (shouldLayout(mNavButtonView)) {
            if (isRtl) {
                right = layoutChildRight(mNavButtonView, right, collapsingMargins,
                        alignmentHeight);
            } else {
//可以看到默认是加在左边的,而且是第一个添加的
                left = layoutChildLeft(mNavButtonView, left, collapsingMargins,
                        alignmentHeight);
            }
        }

        if (shouldLayout(mMenuView)) {
            if (isRtl) {
                left = layoutChildLeft(mMenuView, left, collapsingMargins,
                        alignmentHeight);
            } else {
//可以看到menu里的东西默认是添加在右边的。
                right = layoutChildRight(mMenuView, right, collapsingMargins,
                        alignmentHeight);
            }
        }
  //这里处理了一下contentinsetleft和right
final int contentInsetLeft = getCurrentContentInsetLeft();
        final int contentInsetRight = getCurrentContentInsetRight();
        collapsingMargins[0] = Math.max(0, contentInsetLeft - left);
        collapsingMargins[1] = Math.max(0, contentInsetRight - (width - paddingRight - right));
        left = Math.max(left, contentInsetLeft);
//其实可以看到,如果上边有back按钮的话,那个left肯定很大了,这里其实contentinsetleft就没啥用了。
        right = Math.min(right, width - paddingRight - contentInsetRight);

//可以看到下边的都是左边的
        if (shouldLayout(mExpandedActionView)) {
            if (isRtl) {
            } else {
                left = layoutChildLeft(mExpandedActionView, left, collapsingMargins,
                        alignmentHeight);
            }
        }
  //添加到左边
        if (shouldLayout(mLogoView)) {
            if (isRtl) {
            } else {
                left = layoutChildLeft(mLogoView, left, collapsingMargins,
                        alignmentHeight);
            }
        }
//省略title。logo之类的添加代码

//最后才是添加我们在toolbar里添加的view,也就是customview拉,比如开头的toolbar里添加的textview和imagview
 // Get all remaining children sorted for layout. This is all prepared
        // such that absolute layout direction can be used below.

        addCustomViewsWithGravity(mTempViews, Gravity.LEFT);//循环找到gravity设置为left的view
        final int leftViewsCount = mTempViews.size();
        for (int i = 0; i < leftViewsCount; i++) {
//把这些重心在left的添加到左边
            left = layoutChildLeft(mTempViews.get(i), left, collapsingMargins,
                    alignmentHeight);
        }

        addCustomViewsWithGravity(mTempViews, Gravity.RIGHT);//循环找到gravity设置为right的view
        final int rightViewsCount = mTempViews.size();
        for (int i = 0; i < rightViewsCount; i++) {
  //把这些重心为right的,从右边开始添加
            right = layoutChildRight(mTempViews.get(i), right, collapsingMargins,
                    alignmentHeight);
        }

        // Centered views try to center with respect to the whole bar, but views pinned
        // to the left or right can push the mass of centered views to one side or the other.
//最后添加其他没有设置重心为left和right的,
        addCustomViewsWithGravity(mTempViews, Gravity.CENTER_HORIZONTAL);
        final int centerViewsWidth = getViewListMeasuredWidth(mTempViews, collapsingMargins);
        final int parentCenter = paddingLeft + (width - paddingLeft - paddingRight) / 2;
        final int halfCenterViewsWidth = centerViewsWidth / 2;
        int centerLeft = parentCenter - halfCenterViewsWidth;
        final int centerRight = centerLeft + centerViewsWidth;
        if (centerLeft < left) {
            centerLeft = left;
        } else if (centerRight > right) {
            centerLeft -= centerRight - right;
        }

        final int centerViewsCount = mTempViews.size();
        for (int i = 0; i < centerViewsCount; i++) {
            centerLeft = layoutChildLeft(mTempViews.get(i), centerLeft, collapsingMargins,
                    alignmentHeight);
        }
}

总结: 对于toolbar里边的内容是自定义的情况,如果不用系统的后退按钮的话,去除那个默认偏移量的话
在代码里添加

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

原本以为好了,结果发现6.0的机器上还是有个padding,而在8.0的机器是没有padding的
好奇怪,如下图

image.png

那就看下是不是有默认的padding
``
public Toolbar(Context context, @Nullable AttributeSet attrs) {
this(context, attrs, R.attr.toolbarStyle);
}
//去values下找

 <item name="android:paddingLeft">@dimen/abc_action_bar_default_padding_start_material</item>
        <item name="android:paddingRight">@dimen/abc_action_bar_default_padding_end_material</item>

完事在27的版本中找到的结果

 <dimen name="abc_action_bar_default_padding_end_material">0dp</dimen>
    <dimen name="abc_action_bar_default_padding_start_material">0dp</dimen>

现在有点晕啊,这些东西都是v7库里的东西,不管运行在6.0的手机还是8.0的手机,这个库应该没区别啊,按理数据是一样的啊,太奇怪了。
后来突然醒悟过来,我6.0的测试机是个平板,以我多年的经验,平板和手机有些数据是有区别的。。。
果不其然,我找到这个资源目录values-sw600dp-v13
在下边发现了,我擦,平板默认是有个padding的。

<dimen name="abc_action_bar_default_padding_end_material">8dp</dimen>
    <dimen name="abc_action_bar_default_padding_start_material">8dp</dimen>

这让我想起以前重写Tablayout的时候也是被平板坑了,平板的tabgravity默认是center的。

简单总结下

Toolbar 通过 setSupportActionBar(toolbar) 被修饰成了actionbar。
Toolbar里的布局问题,整体和线性布局差不多,一个挨一个的,从左加,从右加。
默认的返回按钮,title之类的都在左侧,menu的东西都从右侧添加
至于在toolbar里添加的其他view,首先按照view的gravity是left还是right添加,left的从左侧添加,right的从右侧添加。
其他的view是从left开始添加的,
toolbar在平板上是有个默认的8dp的paddingleft和right的。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,186评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,858评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,620评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,888评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,009评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,149评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,204评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,956评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,385评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,698评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,863评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,544评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,185评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,899评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,141评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,684评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,750评论 2 351

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,898评论 25 707
  • 原文地址:http://www.android100.org/html/201606/06/241682.html...
    AFinalStone阅读 917评论 0 1
  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,642评论 18 139
  • 工作这么久了,最讨厌的就是别人跟我说:这事儿不归我管以及我不会做。之前看有报道说,格力集团的董明珠,听到底下的人说...
    随心丸子阅读 213评论 0 1
  • 特立独行的人,会有很强的偏执面,还有让人又爱又恨的性格因子。Amy,爵士音乐上的歌后,音乐上的绝无仅有的天赋与爱情...
    FM_C阅读 368评论 0 0