只用TextView实现知乎主页底部Tab

一言不合就上图:
实现效果图:

实现效果图

自定义一个组件TabItem

显然,底部按钮不止一个,而且是同一个样式,这时候自定义一个组件十分必要,当然,这里实现的自定义组件只用到了TextView。看看自定义组件的xml文件:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:paddingBottom="@dimen/basicPadding"> 
<FrameLayout 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_gravity="center"> 
<TextView android:id="@+id/tab_item_label" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_gravity="center" 
    android:drawableTop="@drawable/main_selector_setting"
    android:paddingLeft="@dimen/smallPadding" 
    android:paddingRight="@dimen/smallPadding" 
    android:gravity="center" 
    android:textColor="@drawable/main_selector_text_color"
    android:paddingTop="@dimen/smallPadding" 
    android:text="Tab Item" /> 
<TextView android:id="@+id/tab_item_count" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_gravity="right|top" 
    android:background="@drawable/ic_new_msg" 
    android:gravity="center" 
    android:text="N" 
    android:textColor="@android:color/white" 
    android:textSize="@dimen/smaller_text_size" /> 
  </FrameLayout>
</FrameLayout>

一共两个TextView,一个用来显示图标和文字,一个用来显示通知消息数量。然后再对组件进行封装,先自定义几个属性:

<declare-styleable name="TabItem"> 
    <attr name="android:src"/> 
    <attr name="tab_item_label" format="string"/> 
    <attr name="tab_item_count" format="integer"/>
</declare-styleable>

分别是图标资源属性、文字属性、消息数量属性,可以在xml中设置参数。然后是代码封装,贴一下获取自定义属性的代码:

private  void initXMLParams(AttributeSet attrs) {    
    TypedArray array = mContext.obtainStyledAttributes(attrs, R.styleable.TabItem);    
    Drawable background = array.getDrawable(R.styleable.TabItem_android_src);    
    if (null != background) {        
        background.setBounds(0, 0, background.getMinimumWidth(), background.getMinimumHeight());
        tabItemLabel.setCompoundDrawables(null, background, null, null);    
    }    
    String label_Str = array.getString(R.styleable.TabItem_tab_item_label);  
    tabItemLabel.setText(label_Str);    
    int iCount = array.getInt(R.styleable.TabItem_tab_item_count, 0);    
    if (iCount != 0) {       
         tabItemMsgCount.setText(String.valueOf(iCount));    
    } else {        
        tabItemMsgCount.setVisibility(View.GONE);    
    }
}

因为要处理点击选中事件,所以继承FrameLayout,实现Checkable接口:

@Override
public void setChecked(boolean checked) { 
    if (isChecked != checked) { 
        isChecked = checked; 
        tabItemLabel.setSelected(isChecked); 
        setSelected(isChecked); 
    } 
} 

@Override public boolean isChecked() { 
      return isChecked; 
} 

@Override public void toggle() { 
      setChecked(!isChecked); 
}

同时要对外部提供一个设置消息数量的接口:

public void setMsgCount(int msgCount) { 
    if (msgCount != 0) { 
        tabItemMsgCount.setVisibility(View.VISIBLE); 
        tabItemMsgCount.setText(String.valueOf(msgCount)); 
    } else {
         tabItemMsgCount.setVisibility(View.GONE); 
    }
}

组件封装完毕。

使用组件

我们定义一个布局文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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="wrap_content" 
    android:layout_gravity="center" 
    android:orientation="vertical"> 

<View 
    android:layout_width="match_parent" 
    android:layout_height="@dimen/divider_height" 
    android:background="@color/listview_divider" /> 

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:orientation="horizontal"> 

<com.github.mvp.widgets.TabItem 
    android:id="@+id/tab_item_main_0" 
    android:layout_width="0dp" 
    android:layout_height="wrap_content" 
    android:layout_weight="1" 
    android:src="@drawable/main_selector_space" 
    app:tab_item_count="0" 
    app:tab_item_label="首页" /> 

<com.github.mvp.widgets.TabItem 
    android:id="@+id/tab_item_main_1" 
    android:layout_width="0dp" 
    android:layout_height="wrap_content" 
    android:layout_weight="1" 
    android:src="@drawable/main_selector_department" 
    app:tab_item_count="99" 
    app:tab_item_label="发现" /> 

<com.github.mvp.widgets.TabItem 
    android:id="@+id/tab_item_main_2" 
    android:layout_width="0dp" 
    android:layout_height="wrap_content" 
    android:layout_weight="1" 
    android:src="@drawable/main_selector_mipian" 
    app:tab_item_count="3" app:tab_item_label="通知" /> 

<com.github.mvp.widgets.TabItem 
    android:id="@+id/tab_item_main_3" 
    android:layout_width="0dp" 
    android:layout_height="wrap_content" 
    android:layout_weight="1" 
    android:src="@drawable/main_selector_message" 
    app:tab_item_count="2" app:tab_item_label="私信" /> 

<com.github.mvp.widgets.TabItem 
    android:id="@+id/tab_item_main_4" 
    android:layout_width="0dp" 
    android:layout_height="wrap_content" 
    android:layout_weight="1" 
    android:src="@drawable/main_selector_setting" 
    app:tab_item_count="0" app:tab_item_label="更多" />
    </LinearLayout>
</LinearLayout>

在这里给各个item设置初始化的数据,用到了自定义的一些属性。然后,在MainActivity里就可以include使用了:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    tools:context=".main.MainActivity"> 

<include android:id="@+id/main_tab_bar_layout" 
    layout="@layout/view_bottom_bar" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_alignParentBottom="true" /> 

<FrameLayout android:id="@+id/fragment_content"
    android:layout_above="@id/main_tab_bar_layout" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 
    </FrameLayout>
</RelativeLayout>

代码里处理响应事件:

@OnClick({R.id.tab_item_main_0, R.id.tab_item_main_1, R.id.tab_item_main_2,
R.id.tab_item_main_3, R.id.tab_item_main_4}) 
public void onClick(View view) { 
    clearChecked(); 

switch (view.getId()) { 
  case R.id.tab_item_main_0: 
    tabItemMain0.setChecked(true); 
    showFragment(TagStatic.TAG_FRAGMENT_TODAY); 
  break; 

  case R.id.tab_item_main_1: 
    tabItemMain1.setChecked(true); 
    showFragment(TagStatic.TAG_FRAGMENT_INTEREST); 
  break; 

  case R.id.tab_item_main_2: 
    tabItemMain2.setChecked(true); 
    showFragment(TagStatic.TAG_FRAGMENT_SAFETY); 
  break; 

  case R.id.tab_item_main_3: 
    tabItemMain3.setChecked(true); 
    showFragment(TagStatic.TAG_FRAGMENT_SPORT); 
  break; 

  case R.id.tab_item_main_4: 
    tabItemMain4.setChecked(true); 
    showFragment(TagStatic.TAG_FRAGMENT_OTHER); 
  break; 
}

大功告成,so easy,对八对?
对比一下知乎IOS版本底部Tab,配个色以后是不是一毛一样呢?

知乎IOS版本底部Tab

获取源码

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

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,527评论 25 707
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,033评论 4 62
  • 关于表格的基础 之前在我CSDN博客中写过一篇关于表格的详细语法。http://blog.csdn.net/wen...
    special_wen阅读 425评论 4 1
  • 转至老马的春天 1、SDWebImage源码解读 之 NSData+ImageContentType 简书 ...
    风轻鱼蛋阅读 209评论 0 1
  • 黎明 微风吹过 绿叶上的露珠 就像天上散落的宝石 我轻轻地将它捡起 握在手心 然后 我用晨曦 捻成五彩的丝线 小心...
    桂花上酸菜阅读 142评论 10 23