android 自定义 header

自定义header.png
可以修改哪些参数

1、返回按钮图片替换、按钮宽高修改、按钮背景颜色修改
2、整个headerLayout背景色的修改
3、右边可以是文字、图片,可以修改文字大小,图片大小,图片背景色修改
4、如果只设置了headerLayout的背景色,其它地方都没有设置颜色,那么其它地方都按headerLayout的背景色来

更新

2020-02-15
1、增大返回按钮的宽高

<declare-styleable name="HeaderViewLayout">
        <!--整个标题栏的颜色-->
        <attr name="headerBackColor" format="color"/>

        <!--左边按钮FrameLayout背景色-->
        <attr name="headerLeftFrameBackColor" format="color"/>
        <!--左边按钮ImageView-->
        <attr name="headerLeftImage" format="reference"/>
        <!--左边按钮ImageView背景色-->
        <attr name="headerLeftImageBackColor" format="color"/>
        <!--左边按钮ImageView宽-->
        <attr name="headerLeftImageWidth" format="dimension"/>
        <!--左边按钮ImageView高-->
        <attr name="headerLeftImageHeight" format="dimension"/>

        <!--中间文字-->
        <attr name="headerMiddleText" format="string"/>
        <!--中间文字大小-->
        <attr name="headerMiddleTextSize" format="integer"/>
        <!--中间文字颜色-->
        <attr name="headerMiddleTextColor" format="color"/>

        <!--右边文字-->
        <attr name="headerRightText" format="string"/>
        <!--右边文字大小-->
        <attr name="headerRightTextSize" format="integer"/>
        <!--右边文字颜色-->
        <attr name="headerRightTextColor" format="color"/>

        <!--右边按钮FrameLayout背景色-->
        <attr name="headerRightFrameBackColor" format="color"/>
        <!--右边按钮ImageView-->
        <attr name="headerRightImage" format="reference"/>
        <!--右边按钮ImageView背景色-->
        <attr name="headerRightImageBackColor" format="color"/>
        <!--右边按钮ImageView宽-->
        <attr name="headerRightImageWidth" format="dimension"/>
        <!--右边按钮ImageView高-->
        <attr name="headerRightImageHeight" format="dimension"/>
    </declare-styleable>

    <color name="app_theme_color_sysm">#FB4C7F</color>

    <item name="base_header_framelayout" type="id"/>
    <item name="base_header_framelayout_back" type="id"/>
    <item name="base_header_framelayout_right" type="id"/>
    <item name="iv_baseheader_right_iv" type="id"/>
    <item name="tv_baseheader_right_text" type="id"/>
    <item name="tv_base_header_title" type="id"/>

    /**
     * @date :2019/11/27 0027
     * @author : gaoxiaoxiong
     * @description:由浮点型转成整型时,原则是忽略小数点部分。
     **/
    public int getDimensionPixelOffset(Context context,int id){
        return context.getResources().getDimensionPixelOffset(id);
    }

/**
 * @date: 创建时间:2020/3/5
 * @author: gaoxiaoxiong
 * @descripion:设置标题
 **/
public class HeaderViewLayout extends FrameLayout {
    private Context mContext;
    private int headerBackColor;//整个View的背景色

    //左边
    private int flLeftLayoutBackGroundColor;
    private int ivLeftBackImageViewResource;
    private int ivLeftBackImageViewBackGroundColor;
    private int ivLeftBackImageWidth, ivLeftBackImageHeight;

    //中间文字
    private int middleTextSize;
    private String middleText;
    private int middleTextColor;

    //右边文字
    private int rightTextSize;
    private String rightText;
    private int rightTextColor;

    //右边图片
    private int flRightLayoutBackGroundColor;
    private int ivRightBackImageViewBackGroundColor;
    private int ivRightBackImageViewResource;
    private int ivRightBackImageWidth, ivRightBackImageHeight;

    public HeaderViewLayout(@NonNull Context context) {
        this(context, null);
    }

    public HeaderViewLayout(@NonNull Context context, @Nullable AttributeSet attrs) {
        this(context, attrs, 0);
    }

    public HeaderViewLayout(@NonNull Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        this.mContext = context;
        TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.HeaderViewLayout);
        headerBackColor = typedArray.getColor(R.styleable.HeaderViewLayout_headerBackColor, ContextCompat.getColor(mContext, R.color.app_theme_color_sysm));

        //左边
        flLeftLayoutBackGroundColor = typedArray.getColor(R.styleable.HeaderViewLayout_headerLeftFrameBackColor, 0);
        ivLeftBackImageViewResource = typedArray.getResourceId(R.styleable.HeaderViewLayout_headerLeftImage, R.drawable.icon_back_white);
        ivLeftBackImageViewBackGroundColor = typedArray.getColor(R.styleable.HeaderViewLayout_headerLeftImageBackColor, 0);
        ivLeftBackImageHeight = typedArray.getDimensionPixelOffset(R.styleable.HeaderViewLayout_headerLeftImageHeight, mContext.getResources().getDimensionPixelOffset(R.dimen.dp_25));
        ivLeftBackImageWidth = typedArray.getDimensionPixelOffset(R.styleable.HeaderViewLayout_headerLeftImageWidth, mContext.getResources().getDimensionPixelOffset(R.dimen.dp_25));

        //中间
        middleText = typedArray.getString(R.styleable.HeaderViewLayout_headerMiddleText);
        middleTextSize = typedArray.getInt(R.styleable.HeaderViewLayout_headerMiddleTextSize, 18);
        middleTextColor = typedArray.getColor(R.styleable.HeaderViewLayout_headerMiddleTextColor, ContextCompat.getColor(mContext, R.color.white));

        //右边
        flRightLayoutBackGroundColor = typedArray.getColor(R.styleable.HeaderViewLayout_headerRightFrameBackColor, 0);

        //右边文字
        rightTextSize = typedArray.getInt(R.styleable.HeaderViewLayout_headerRightTextSize,14);
        rightTextColor = typedArray.getColor(R.styleable.HeaderViewLayout_headerRightTextColor, ContextCompat.getColor(mContext, R.color.black_333333));
        rightText = typedArray.getString(R.styleable.HeaderViewLayout_headerRightText);

        //右边图片
        ivRightBackImageViewBackGroundColor = typedArray.getColor(R.styleable.HeaderViewLayout_headerRightImageBackColor, 0);
        ivRightBackImageViewResource = typedArray.getResourceId(R.styleable.HeaderViewLayout_headerRightImage, 0);
        ivRightBackImageWidth = typedArray.getDimensionPixelOffset(R.styleable.HeaderViewLayout_headerRightImageWidth,mContext.getResources().getDimensionPixelOffset(R.dimen.dp_25));
        ivRightBackImageHeight = typedArray.getDimensionPixelOffset(R.styleable.HeaderViewLayout_headerRightImageHeight,mContext.getResources().getDimensionPixelOffset(R.dimen.dp_25));

        typedArray.recycle();
        init();
    }

    private void init() {
        //左边
        FrameLayout frameBackLayout = new FrameLayout(mContext);
        frameBackLayout.setId(R.id.base_header_framelayout_back);
        FrameLayout.LayoutParams flrameBackLayoutLayoutParams = new FrameLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.MATCH_PARENT);
        flrameBackLayoutLayoutParams.gravity = Gravity.CENTER_VERTICAL;
        frameBackLayout.setPadding(DensityUtil.getInstance().getDimensionPixelOffset(mContext, R.dimen.dp_10), 0, DensityUtil.getInstance().getDimensionPixelOffset(mContext, R.dimen.dp_10), 0);
        int totalWidth = ivLeftBackImageWidth + DensityUtil.getInstance().getDimensionPixelOffset(mContext, R.dimen.dp_10) * 2 + DensityUtil.getInstance().getDimensionPixelOffset(mContext, R.dimen.dp_5);
        flrameBackLayoutLayoutParams.width = totalWidth;
        frameBackLayout.setLayoutParams(flrameBackLayoutLayoutParams);
        if (flLeftLayoutBackGroundColor != 0) {
            frameBackLayout.setBackgroundColor(flLeftLayoutBackGroundColor);
        }


        ImageView ivBackImageView = new ImageView(mContext);
        FrameLayout.LayoutParams ivBackImageLayoutParams = new FrameLayout.LayoutParams(ivLeftBackImageWidth, ivLeftBackImageHeight);
        ivBackImageView.setScaleType(ImageView.ScaleType.FIT_XY);
        ivBackImageView.setLayoutParams(ivBackImageLayoutParams);
        ivBackImageLayoutParams.gravity = Gravity.CENTER;
        if (ivLeftBackImageViewBackGroundColor != 0) {
            ivBackImageView.setBackgroundColor(ivLeftBackImageViewBackGroundColor);
        }

        ivBackImageView.setImageResource(ivLeftBackImageViewResource);
        frameBackLayout.addView(ivBackImageView);
        this.addView(frameBackLayout);

        //中间文字
        TextView middleTextView = new TextView(mContext);
        middleTextView.setId(R.id.tv_base_header_title);
        FrameLayout.LayoutParams middleTextViewLayoutParams = new FrameLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.MATCH_PARENT);
        middleTextViewLayoutParams.gravity = Gravity.CENTER;
        middleTextView.setTextSize(middleTextSize);
        middleTextView.setGravity(Gravity.CENTER);
        middleTextView.setTextColor(middleTextColor);
        middleTextView.setText(StringUtils.isEmptyValue(middleText));
        middleTextView.setLayoutParams(middleTextViewLayoutParams);
        this.addView(middleTextView);

        //右边
        FrameLayout frameRightLayout = new FrameLayout(mContext);
        frameRightLayout.setId(R.id.base_header_framelayout_right);
        FrameLayout.LayoutParams frameRightLayoutLayoutParams = new FrameLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.MATCH_PARENT);
        frameRightLayoutLayoutParams.gravity = Gravity.RIGHT | Gravity.CENTER_VERTICAL;
        frameRightLayout.setLayoutParams(frameRightLayoutLayoutParams);
        frameRightLayout.setPadding(DensityUtil.getInstance().getDimensionPixelOffset(mContext, R.dimen.dp_10), 0, DensityUtil.getInstance().getDimensionPixelOffset(mContext, R.dimen.dp_10), 0);
        if (flRightLayoutBackGroundColor != 0) {
            frameRightLayout.setBackgroundColor(flRightLayoutBackGroundColor);
        }
        if (!StringUtils.isEmpty(rightText) || ivRightBackImageViewResource != 0) {
            if (!StringUtils.isEmpty(rightText)) {//显示右边文字
                TextView rightTextView = new TextView(mContext);
                rightTextView.setId(R.id.tv_baseheader_right_text);
                FrameLayout.LayoutParams rightTextViewLayoutParams = new FrameLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.MATCH_PARENT);
                rightTextViewLayoutParams.gravity = Gravity.CENTER;
                rightTextView.setTextSize(rightTextSize);
                rightTextView.setGravity(Gravity.CENTER);
                rightTextView.setText(StringUtils.isEmptyValue(rightText));
                rightTextView.setTextColor(rightTextColor);
                rightTextView.setLayoutParams(rightTextViewLayoutParams);
                frameRightLayout.addView(rightTextView);
            } else {
                ImageView ivRightImageView = new ImageView(mContext);
                ivRightImageView.setId(R.id.iv_baseheader_right_iv);
                FrameLayout.LayoutParams ivRightImageViewLayoutParams = new FrameLayout.LayoutParams(ivRightBackImageWidth, ivRightBackImageHeight);
                ivRightImageViewLayoutParams.gravity = Gravity.CENTER;
                ivRightImageView.setScaleType(ImageView.ScaleType.FIT_XY);
                ivRightImageView.setLayoutParams(ivRightImageViewLayoutParams);
                if (ivRightBackImageViewBackGroundColor != 0) {
                    ivRightImageView.setBackgroundColor(ivRightBackImageViewBackGroundColor);
                }
                ivRightImageView.setImageResource(ivRightBackImageViewResource);
                frameRightLayout.addView(ivRightImageView);
            }
        }
        this.addView(frameRightLayout);
        this.setId(R.id.base_header_framelayout);
        this.setBackgroundColor(headerBackColor);
    }

 /**
     * @date 创建时间:2020/5/15 0015
     * @auther gaoxiaoxiong
     * @Descriptiion 添加右边的视图,会删除之前写好的视图
     **/
    public void setRightView(View view){
        FrameLayout.LayoutParams layoutParams = (LayoutParams) view.getLayoutParams();
        layoutParams.gravity = Gravity.CENTER;
        view.setLayoutParams(layoutParams);
        FrameLayout frameRightLayout = this.findViewById(R.id.base_header_framelayout_right);
        frameRightLayout.removeAllViews();
        frameRightLayout.addView(view);
    }

}

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

推荐阅读更多精彩内容

  • 一,HTML语言的一般语法: 1,围堵标记:<>… 1)带属性的标记: … 2)无属性的标记:加粗 居中 标题 2...
    清水易蓝阅读 1,259评论 0 2
  • 浏览器与服务器的基本概念 浏览器(安装在电脑里面的一个软件) 作用: ①将网页内容渲染呈现给用户查看。 ②让用户通...
    云还灬阅读 1,101评论 0 0
  • 一个调皮捣蛋,又爱惹是生非,固执不听话,做事拖拉,上课注意力不集中,有阅读困难症,学习成绩奇差(类似于一堂...
    燕凤同行相伴阅读 730评论 0 2
  • 进化是绝对的,民心向善是绝对的。 当我们放弃进化,放弃向善,恶就显现出来。恶是人性的天性之一,...
    黄卫荣阅读 662评论 0 0
  • 突然想学习粤语,原因太多,真心想学。
    念儿75阅读 280评论 6 1