一日一学_底部导航栏

自定义布局

自定义布局都是继承ViewGroup或已经存在的布局(FrameLayout,LinearLayout...)进行重写更改
今天主要思考下面红圈圈住的底部导航栏:


自定义布局

思考(掌握的知识点)

看到(自定义布局)底部导航栏图片,我们会立马想到,可以点击切换页面(Fragment),导航栏的图片文字随机改变。
1:底部导航栏需要监听按下导航按钮的个数,随之切换切面(回调函数)
回调函数
是指通过函数参数传递到其他代码的,某一块可执行代码的引用。这一设计允许底层代码调用在高层定义的子程序。含义往往都是很难理解下面我们写个demo来理解这段含义。
我们通过模拟Android点击按钮进行学习:

package com.wuxiao.listener;  
  
//点击监听器接口 
public interface OnClickListener {  
    public void onClick();  
}  

创建Button

package com.wuxiao.listener;  
  
public class Button {  
    private OnClickListener listener;  
      
    //设置具体点击监听器 
    public void setOnClickListener(OnClickListener listener) {  
        this.listener = listener;  
    }  
     
    //按钮被点击 
    public void Click() {  
        listener.onClick();  
    }  
}  

模拟手机端点击按钮操作

package com.wuxiao.listener;  
  
public class Phone{  
    public static void main(String[] args) {  
        Button button =new Button();  
        //注册监听器  
        button.setOnClickListener(new OnClickListener() {  
  
            @Override  
            public void onClick() {  
                System.out.println("按钮被点击了..");
           }  
              
        });  
        //用户点击  
        button.Click();  
    }  
}  

通过小小的demo,我们就可以理解上面难懂的概念了。
2:导航子布局为了方便使用在xml中进行配置(自定义Attrs属性)

  • Attrs
    布局中的各个控件需要设置属性。这些属性除了由系统定义以外,我们开发者也可以自定义属性,并且在自定义View的时候会频繁使用。
  • 定义Attrs
    在res/values/attrs.xml中定义如下:
  <declare-styleable name="WuXiaoLayout">

        <!-- icon -->
        <!-- 设置icon宽度 -->
        <attr name="tl_iconWidth" format="dimension" />
        <!-- 设置icon高度 -->
        <attr name="tl_iconHeight" format="dimension" />
        <!-- 设置icon是否可见 -->
        <attr name="tl_iconVisible" format="boolean" />
        <!-- 设置icon显示位置,对应Gravity中常量值 -->
        <attr name="tl_iconGravity" format="enum">
            <enum name="LEFT" value="3" />
            <enum name="TOP" value="48" />
            <enum name="RIGHT" value="5" />
            <enum name="BOTTOM" value="80" />
        </attr>
        <!-- 设置icon与文字间距 -->
        <attr name="tl_iconMargin" format="dimension" />

    </declare-styleable>

定义好Attr后,可以直接在Theme、Style和布局的控件中使用。

底部导航栏开发

public class BottomTabHost extends FrameLayout {

    public BottomTabHost(Context context) {
        this(context, null, 0);
    }

    public BottomTabHost(Context context, AttributeSet attrs) {
        this(context, attrs, 0);
    }

    public BottomTabHost(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        //重写onDraw方法,需要调用这个方法来清除flag
        setWillNotDraw(false);
        setClipChildren(false);
        setClipToPadding(false);

        this.mContext = context;
        mTabsContainer = new LinearLayout(context);
        addView(mTabsContainer);

        obtainAttributes(context, attrs);

        //获取布局高度
        String height = attrs.getAttributeValue("http://schemas.android.com/apk/res/android", "layout_height");

        if (height.equals(ViewGroup.LayoutParams.MATCH_PARENT + "")) {

        } else if (height.equals(ViewGroup.LayoutParams.WRAP_CONTENT + "")) {

        } else {
            int[] systemAttrs = {android.R.attr.layout_height};
            TypedArray a = context.obtainStyledAttributes(attrs, systemAttrs);
            mHeight = a.getDimensionPixelSize(0, ViewGroup.LayoutParams.WRAP_CONTENT);
            a.recycle();
        }


    }

    private void obtainAttributes(Context context, AttributeSet attrs) {
        TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.WuXiaoTabHost);
        mTextsize = ta.getDimension(R.styleable.WuXiaoTabHost_wx_textsize, sp2px(13f));
        mTextSelectColor = ta.getColor(R.styleable.WuXiaoTabHost_wx_textSelectColor, Color.parseColor("#ffffff"));
        mTextUnselectColor = ta.getColor(R.styleable.WuXiaoTabHost_wx_textUnselectColor, Color.parseColor("#AAffffff"));
        mIconVisible = ta.getBoolean(R.styleable.WuXiaoTabHost_wx_iconVisible, true);
        mIconGravity = ta.getInt(R.styleable.WuXiaoTabHost_wx_iconGravity, Gravity.TOP);
        mIconWidth = ta.getDimension(R.styleable.WuXiaoTabHost_wx_iconWidth, dp2px(0));
        mIconHeight = ta.getDimension(R.styleable.WuXiaoTabHost_wx_iconHeight, dp2px(0));
        mIconMargin = ta.getDimension(R.styleable.WuXiaoTabHost_wx_iconMargin, dp2px(2.5f));
        ta.recycle();
    }
}

再开发之前我需要思考TypedArray是什么?

再自定义布局是构造方法中的有个参数叫做AttributeSet,这又是什么?这个参数见名可知是参数的集合,那么我可以通过它去获取属性吗?
做个测试试试
布局

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:wx="http://schemas.android.com/apk/res-auto"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <com.wuxiao.bottomtabhost.BottomTabHost
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        wx:wx_textsize="50px"/>
</RelativeLayout>


对应代码:

 public BottomTabHost(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        int count = attrs.getAttributeCount();
        for (int i = 0; i < count; i++) {
            String attrName = attrs.getAttributeName(i);
            String attrVal = attrs.getAttributeValue(i);
            Log.e("BottomTabHost", "attrName = " + attrName + " , attrVal = " + attrVal);
        }
}

来看看打印结果

打印结果

yes,猜想是对的。真的获得所有的属性.那么TypedArray有什么用了?
别着急我们在写个Demo你给明白了
布局进行修改

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:wx="http://schemas.android.com/apk/res-auto"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <com.wuxiao.bottomtabhost.BottomTabHost
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        wx:wx_text="@string/app_name"
        wx:wx_textsize="50px"/>
</RelativeLayout>


对应代码:

 public BottomTabHost(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        int count = attrs.getAttributeCount();
        for (int i = 0; i < count; i++) {
            String attrName = attrs.getAttributeName(i);
            String attrVal = attrs.getAttributeValue(i);
            Log.e("BottomTabHost", "attrName = " + attrName + " , attrVal = " + attrVal);
        }
       //use TypedArray
}
使用TypedArray打印日志

可以发现如果布局引用@获取数据,通过AttributeSet获取的值根本不是我们想要的,这下我们明白了吧TypedArray其实是用来简化我们的工作的,比如上例,如果布局中的属性的值是引用类型(比如:@dimen/dp100),如果使用AttributeSet去获得最终的像素值,那么需要第一步拿到id,第二步再去解析id。而TypedArray正是帮我们简化了这个过程。
我们继续开发底部导航栏:

public class BottomTabHost extends FrameLayout {
 
//添加数据
public void setTabData(ArrayList<TabData> tabDatas) {
        if (tabDatas == null || tabDatas.size() == 0) {
            throw new IllegalStateException("tabDatas can not be NULL or EMPTY !");
        }

        this.mTabDatas.clear();
        this.mTabDatas.addAll(tabDatas);
        //填充数据并刷新界面
        notifyDataSetChanged();
    }

      /**
     * 更新数据
     */
    public void notifyDataSetChanged() {
        mTabsContainer.removeAllViews();
        this.mTabCount = mTabDatas.size();
        View tabView;
        根据mIconGravity 来摆放子布局,并给子布局设置tag
        for (int i = 0; i < mTabCount; i++) {
            if (mIconGravity == Gravity.LEFT) {
                tabView = View.inflate(mContext, R.layout.layout_tab_left, null);
            } else if (mIconGravity == Gravity.RIGHT) {
                tabView = View.inflate(mContext, R.layout.layout_tab_right, null);
            } else if (mIconGravity == Gravity.BOTTOM) {
                tabView = View.inflate(mContext, R.layout.layout_tab_bottom, null);
            } else {
                tabView = View.inflate(mContext, R.layout.layout_tab_top, null);
            }

            tabView.setTag(i);
            addTab(i, tabView);
        }

        updateTabStyles();
    }
}

之前一直没有时间思考Tag是什么?今天分析Tag的做什么的?
Tag不像id是用来标示View。Tag我的理解就是绑定数据到指定控件(View),而不需要显示出来(经常用来存储一些View的数据),可以使用getTag()获取数据.

public void setTag(final Object tag) {    
        mTag = tag;
}
@ViewDebug.ExportedProperty
public Object getTag() {  
  return mTag;
}

源码很简单,没什么好讲的

public class BottomTabHost extends FrameLayout {
   /**
     * 创建并添加tab
     */
    private void addTab(final int position, View tabView) {
        TextView tv_tab_title = (TextView) tabView.findViewById(R.id.tv_tab_title);
        tv_tab_title.setText(mTabDatas.get(position).getTabTitle());
        ImageView iv_tab_icon = (ImageView) tabView.findViewById(R.id.iv_tab_icon);
        iv_tab_icon.setImageResource(mTabDatas.get(position).getTabUnselectedIcon());

        tabView.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                int position = (Integer) v.getTag();
                //如果当前页面与点击页面不一样,切换到点击页面,否则页面不变
                if (mCurrentTab != position) {
                    setCurrentTab(position);
                    if (mListener != null) {
                        mListener.onTabSelect(position);
                    }
                } else {
                    if (mListener != null) {
                        mListener.onTabReselect(position);
                    }
                }
            }
        });
}
 //回调(进行页面切换)
 private OnTabSelectListener mListener;
 public void setOnTabSelectListener(OnTabSelectListener listener) {            
         this.mListener = listener;
 }

更新布局样式,判断点击与当前页面的来进行布局的更新与绘制

public class BottomTabHost extends FrameLayout {
 //更新布局样式
private void updateTabStyles() {
        for (int i = 0; i < mTabCount; i++) {
            View tabView = mTabsContainer.getChildAt(i);
            tabView.setPadding((int) 0, 0, (int) 0, 0);
            TextView tv_tab_title = (TextView) tabView.findViewById(R.id.tv_tab_title);
            tv_tab_title.setTextColor(i == mCurrentTab ? mTextSelectColor : mTextUnselectColor);
            tv_tab_title.setTextSize(TypedValue.COMPLEX_UNIT_PX, mTextsize);
            tv_tab_title.getPaint().setFakeBoldText(false);


            ImageView iv_tab_icon = (ImageView) tabView.findViewById(R.id.iv_tab_icon);
            if (mIconVisible) {
                iv_tab_icon.setVisibility(View.VISIBLE);
                TabData TabData = mTabDatas.get(i);
                iv_tab_icon.setImageResource(i == mCurrentTab ? TabData.getTabSelectedIcon() : TabData.getTabUnselectedIcon());
                LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(
                        mIconWidth <= 0 ? LinearLayout.LayoutParams.WRAP_CONTENT : (int) mIconWidth,
                        mIconHeight <= 0 ? LinearLayout.LayoutParams.WRAP_CONTENT : (int) mIconHeight);
                if (mIconGravity == Gravity.LEFT) {
                    lp.rightMargin = (int) mIconMargin;
                } else if (mIconGravity == Gravity.RIGHT) {
                    lp.leftMargin = (int) mIconMargin;
                } else if (mIconGravity == Gravity.BOTTOM) {
                    lp.topMargin = (int) mIconMargin;
                } else {
                    lp.bottomMargin = (int) mIconMargin;
                }

                iv_tab_icon.setLayoutParams(lp);
            } else {
                iv_tab_icon.setVisibility(View.GONE);
            }
        }
    }
    //防止被activity回收
    @Override
    protected Parcelable onSaveInstanceState() {
        Bundle bundle = new Bundle();
        bundle.putParcelable("instanceState", super.onSaveInstanceState());
        bundle.putInt("mCurrentTab", mCurrentTab);
        return bundle;
    }
   
    @Override
    protected void onRestoreInstanceState(Parcelable state) {
        if (state instanceof Bundle) {
            Bundle bundle = (Bundle) state;
            mCurrentTab = bundle.getInt("mCurrentTab");
            state = bundle.getParcelable("instanceState");
            if (mCurrentTab != 0 && mTabsContainer.getChildCount() > 0) {
                updateTabSelection(mCurrentTab);
            }
        }
        super.onRestoreInstanceState(state);
    }
}

上面是部分重要代码
看看运行图

运行图

源码:https://github.com/quiet-wuxiao/BottomTabHost/tree/master

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

推荐阅读更多精彩内容