BottomBarLayout源码学习

本文详细探讨了如何封装BottomBarLayout及其组件BottomBarItem。通过自定义View实现底部导航栏,避免使用复杂嵌套布局。文章重点介绍了封装布局的思路、动态操作元素的方法以及内存回收时的状态保存策略,同时解析了BottomBarItem的属性设置,帮助读者理解如何通过代码控制布局属性。
摘要由CSDN通过智能技术生成

github地址
是对下方底部的封装
如果不封装的话,更多的是
大的布局轮廓是 外面是一个大的容器(比如LinearLayout),里面是四个小的容器(比如LinearLayout)
而BottomBarLayout是上面大的容器的自定义View封装,BottomBarItem是下面每个四个小容器的自定义View的封装

所以大致思路清晰了,不是一件特别复杂的,就把它自定义组合布局去看

如何封装布局
  • 如何动态灵活的操作元素
  • 内存回收情况下的处理
BottomBarItem属性介绍

如何封装布局
  • BottomBarItem
    属于一种组合布局
@NonNull
private View initView() {
    View view = View.inflate(this.mContext, layout.item_bottom_bar, (ViewGroup)null);

关键是学习如何用代码操作布局的属性,而这些属性和外部的自定义属性相关联。

比如给mImageView控件设置

private void init() {
    this.setOrientation(1);
    this.setGravity(17);
    View view = this.initView();
    this.mImageView.setImageResource(this.mIconNormalResourceId);
    if (this.mIconWidth != 0 && this.mIconHeight != 0) {
        LayoutParams imageLayoutParams = (LayoutParams)this.mImageView.getLayoutParams();
        imageLayoutParams.width = this.mIconWidth;
        imageLayoutParams.height = this.mIconHeight;
        this.mImageView.setLayoutParams(imageLayoutParams);
    }

    this.mTextView.setTextSize(0, (float)this.mTextSize);
    this.mTvUnread.setTextSize(0, (float)this.mUnreadTextSize);
    this.mTvUnread.setTextColor(this.mUnreadTextColor);
    this.mTvUnread.setBackground(this.mUnreadTextBg);
    this.mTvMsg.setTextSize(0, (float)this.mMsgTextSize);
    this.mTvMsg.setTextColor(this.mMsgTextColor);
    this.mTvMsg.setBackground(this.mMsgTextBg);
    this.mTvNotify
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值