android上FragmentTabHost实现自定义Tab Indicator

简介: android上FragmentTabHost实现自定义Tab Indicator

最近一直在做安卓开发,发现Tab布局可以用FragmentTabHost来实现,唯一不好的就是不能实现带图标的tabindicator, V4版本中的虽然API有支持,但是无论怎么设置Drawable对象都不起作用,所以被逼无赖,发现indicator可以支持传进一个View做tabtitle,于是经过一番各种坑之后,我做了一个自定义的Tab indicator,可以实现切换提示、显示带图标的tabtitle,同时支持滑动切换到不同Tab。首先来看一下效果吧。

20151213150251763.png


我的实现思路是这样的:


第一步,当然是建立android V4版本的FragmentTabHost的布局XML文件,一般情况下是不建议改动的,我是直接copy官网上的。文件内容如下:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.app.FragmentTabHost
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/tabhost"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >
 
        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom"/>
 
        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="0dp"
            android:layout_weight="1" />
    </LinearLayout>
 
</android.support.v4.app.FragmentTabHost>

第二步,建立自定义的tab-indicator XML布局文件,实现自定义tab title View,XML文件内容如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal" >
 
    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical" >
 
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal" >
 
            <ImageView
                android:id="@+id/tab_icon_1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_margin="5dp"
                android:contentDescription="icon" />
 
            <TextView
                android:id="@+id/tab_name_1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textColor="#000"
                android:textSize="24sp" />
        </LinearLayout>
 
        <View
            android:id="@+id/tab_border_line_1"
            android:layout_width="fill_parent"
            android:layout_height="3dp"
            android:background="#ff0000" />
    </LinearLayout>
 
    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical" >
 
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal" >
 
            <ImageView
                android:id="@+id/tab_icon_2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_margin="5dp"
                android:contentDescription="icon" />
 
            <TextView
                android:id="@+id/tab_name_2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textColor="#000"
                android:textSize="24sp" />
        </LinearLayout>
 
        <View
            android:id="@+id/tab_border_line_2"
            android:layout_width="fill_parent"
            android:layout_marginTop="1dp"
            android:layout_height="3dp"
            android:background="#ff0000" />
    </LinearLayout>
 
    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical" >
 
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal" >
 
            <ImageView
                android:id="@+id/tab_icon_3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_margin="5dp"
                android:contentDescription="icon" />
 
            <TextView
                android:id="@+id/tab_name_3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textColor="#000"
                android:textSize="24sp" />
        </LinearLayout>
 
        <View
            android:id="@+id/tab_border_line_3"
            android:layout_width="fill_parent"
            android:layout_marginTop="0.5dp"
            android:layout_height="3dp"
            android:background="#ff0000" />
    </LinearLayout>
 
</LinearLayout>

第四步:当然是在MainActivity的onCreate方法中实现FragmentTabHost对象的初始化,建立一个真正的tab布局界面。代码实现如下:

tabHost = (FragmentTabHost) findViewById(android.R.id.tabhost);
tabHost.setup(this, getSupportFragmentManager(), android.R.id.tabcontent);

第五步:也是最恶搞的一步,就是把View传到V4的每个tab的indicator中去,这里要特别说明一下,其实起作用的只有第一个设置进去的View,其它虽然是必须的,但是无需任何设置。否则FragmentTabHost将无法正常工作。这个是我吐血得到的教训:代码如下:

ImageView piv = (ImageView)llView.findViewById(R.id.tab_icon_1);
TextView ptv = (TextView)llView.findViewById(R.id.tab_name_1);
ptv.setText("找人");
piv.setImageBitmap(personIcon);
 
piv = (ImageView)llView.findViewById(R.id.tab_icon_2);
ptv = (TextView)llView.findViewById(R.id.tab_name_2);
ptv.setText("圈子");
piv.setImageBitmap(circleIcon);
 
piv = (ImageView)llView.findViewById(R.id.tab_icon_3);
ptv = (TextView)llView.findViewById(R.id.tab_name_3);
ptv.setText("博客");
piv.setImageBitmap(blogIcon);
 
// 必须有这个,但是没有鸟用
View view2 = getLayoutInflater().inflate(R.layout.tab_indicator, (ViewGroup) mRoot.findViewById(android.R.id.tabs), false);
View view3 = getLayoutInflater().inflate(R.layout.tab_indicator, (ViewGroup) mRoot.findViewById(android.R.id.tabs), false);
 
Log.i("my-debug", "go here to setup tab content");
tabHost.addTab(
    tabHost.newTabSpec("找人").setIndicator(llView),
    PersonFragment.class, null);
tabHost.addTab(
    tabHost.newTabSpec("圈子").setIndicator(view2),
    CircleFragment.class, null);
tabHost.addTab(
    tabHost.newTabSpec("博客").setIndicator(view3),
    BlogFragment.class, null);

第六步,添加手势侧滑支持与现实默认为第一个tab上的内容,实现代码如下:

// 显示第一tab内容Fragment
tabHost.setCurrentTab(0);
View v = (View)llView.findViewById(R.id.tab_border_line_1);
v.setBackgroundColor(Color.BLUE);
mDetector = new GestureDetectorCompat(this, new MyGestureListener());

其中手势侧滑支持基于SimpleOnGestureListener类实现,同时要重载onTouchEvent方法才可以工作。

完整的MainActivity的代码如下:

package com.example.gesturedemo;
 
import android.annotation.SuppressLint;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Color;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentTabHost;
import android.support.v4.view.GestureDetectorCompat;
import android.util.Log;
import android.view.GestureDetector;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;
 
@SuppressLint("NewApi")
public class MainActivity extends FragmentActivity {
  private FragmentTabHost tabHost;
  private GestureDetectorCompat mDetector;
  private View llView;
  private static int tabIndex = 0;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
 
    // get tabhost and setup it
    tabHost = (FragmentTabHost) findViewById(android.R.id.tabhost);
    tabHost.setup(this, getSupportFragmentManager(), android.R.id.tabcontent);
    
    // load icons
    Bitmap personIcon = BitmapFactory.decodeResource(this.getResources(), R.drawable.person);
    Bitmap circleIcon = BitmapFactory.decodeResource(this.getResources(), R.drawable.circle);
    Bitmap blogIcon = BitmapFactory.decodeResource(this.getResources(), R.drawable.blog);
    
    // add tabs
    Log.i("my-debug", "go here to setup tab header");
    View mRoot = getLayoutInflater().inflate(R.layout.activity_main, null);
    llView = getLayoutInflater().inflate(R.layout.tab_indicator, (ViewGroup) mRoot.findViewById(android.R.id.tabs), false);
    
    ImageView piv = (ImageView)llView.findViewById(R.id.tab_icon_1);
    TextView ptv = (TextView)llView.findViewById(R.id.tab_name_1);
    ptv.setText("找人");
    piv.setImageBitmap(personIcon);
    
    piv = (ImageView)llView.findViewById(R.id.tab_icon_2);
    ptv = (TextView)llView.findViewById(R.id.tab_name_2);
    ptv.setText("圈子");
    piv.setImageBitmap(circleIcon);
    
    piv = (ImageView)llView.findViewById(R.id.tab_icon_3);
    ptv = (TextView)llView.findViewById(R.id.tab_name_3);
    ptv.setText("博客");
    piv.setImageBitmap(blogIcon);
    
    // 必须有这个,但是没有鸟用
    View view2 = getLayoutInflater().inflate(R.layout.tab_indicator, (ViewGroup) mRoot.findViewById(android.R.id.tabs), false);
    View view3 = getLayoutInflater().inflate(R.layout.tab_indicator, (ViewGroup) mRoot.findViewById(android.R.id.tabs), false);
    
    Log.i("my-debug", "go here to setup tab content");
    tabHost.addTab(
        tabHost.newTabSpec("找人").setIndicator(llView),
        PersonFragment.class, null);
    tabHost.addTab(
        tabHost.newTabSpec("圈子").setIndicator(view2),
        CircleFragment.class, null);
    tabHost.addTab(
        tabHost.newTabSpec("博客").setIndicator(view3),
        BlogFragment.class, null);
 
    // 显示第一tab内容Fragment
    tabHost.setCurrentTab(0);
    View v = (View)llView.findViewById(R.id.tab_border_line_1);
    v.setBackgroundColor(Color.BLUE);
    mDetector = new GestureDetectorCompat(this, new MyGestureListener());
  }
  
  @Override
  public boolean onTouchEvent(MotionEvent event) {
    this.mDetector.onTouchEvent(event);
    return super.onTouchEvent(event);
  }
  
  public void showNextTab()
  {
    tabIndex++;
    if(tabIndex >= 3)
    {
      tabIndex = 0;
    }
    tabHost.setCurrentTab(tabIndex);
    View v1 = (View)llView.findViewById(R.id.tab_border_line_1);
    View v2 = (View)llView.findViewById(R.id.tab_border_line_2);
    View v3 = (View)llView.findViewById(R.id.tab_border_line_3);
    v1.setBackgroundColor(Color.RED);
    v2.setBackgroundColor(Color.RED);
    v3.setBackgroundColor(Color.RED);
    if(tabIndex == 0) {
      v1.setBackgroundColor(Color.BLUE);
    }
    else if(tabIndex == 1) {
      v2.setBackgroundColor(Color.BLUE);
    }
    else if(tabIndex == 2) {
      v3.setBackgroundColor(Color.BLUE);
    }
  }
  
  class MyGestureListener extends GestureDetector.SimpleOnGestureListener {
    private static final String DEBUG_TAG = "Gestures";
 
    @Override
    public boolean onDown(MotionEvent event) {
      Log.d(DEBUG_TAG, "onDown: " + event.getX());
      return true;
    }
 
    @Override
    public boolean onFling(MotionEvent event1, MotionEvent event2, float velocityX, float velocityY) {
      Log.d(DEBUG_TAG, "onFling: " + event1.getX());
      float deltaX = event1.getX() - event2.getX();
      Log.i("gesture", "deltaX : " + deltaX);
      if(deltaX > 20) {   
        showNextTab();
      }
      else {
        Toast.makeText(getApplicationContext(), "从右向左滑动开始应用...", Toast.LENGTH_SHORT).show();   
      }
      return true;
    }
  }
 
}

使用的三个Fragment程序代码基本一样,无需一一给出,这里只给出PersonFragment类的实现代码如下:

package com.example.gesturedemo;
 
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
 
public class PersonFragment extends Fragment {
 
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
    }
 
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        View v = inflater.inflate(R.layout.common_content, container, false);
        TextView tv = (TextView) v.findViewById(R.id.textView1);
        tv.setText("相逢未必曾相识");
        return v;
    }
}

使用的布局文件XML内容如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >
 
    <TextView
        android:id="@+id/textView1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textSize="36sp"
        android:gravity="center"
        android:text="tabhost" />
 
</LinearLayout>

相关文章
|
1月前
|
缓存 前端开发 Android开发
安卓开发中的自定义视图:从零到英雄
【10月更文挑战第42天】 在安卓的世界里,自定义视图是一块画布,让开发者能够绘制出独一无二的界面体验。本文将带你走进自定义视图的大门,通过深入浅出的方式,让你从零基础到能够独立设计并实现复杂的自定义组件。我们将探索自定义视图的核心概念、实现步骤,以及如何优化你的视图以提高性能和兼容性。准备好了吗?让我们开始这段创造性的旅程吧!
27 1
|
2月前
|
Android开发 开发者
安卓应用开发中的自定义视图
【9月更文挑战第37天】在安卓开发的海洋中,自定义视图犹如一座座小岛,等待着勇敢的探索者去发现其独特之处。本文将带领你踏上这段旅程,从浅滩走向深海,逐步揭开自定义视图的神秘面纱。
44 3
|
2月前
|
数据可视化 Android开发 开发者
安卓应用开发中的自定义View组件
【10月更文挑战第5天】在安卓应用开发中,自定义View组件是提升用户交互体验的利器。本篇将深入探讨如何从零开始创建自定义View,包括设计理念、实现步骤以及性能优化技巧,帮助开发者打造流畅且富有创意的用户界面。
100 0
|
1月前
|
搜索推荐 前端开发 Android开发
安卓应用开发中的自定义视图实现
【10月更文挑战第30天】在安卓开发的海洋中,自定义视图是那抹不可或缺的亮色,它为应用界面的个性化和交互体验的提升提供了无限可能。本文将深入探讨如何在安卓平台创建自定义视图,并展示如何通过代码实现这一过程。我们将从基础出发,逐步引导你理解自定义视图的核心概念,然后通过一个实际的代码示例,详细讲解如何将理论应用于实践,最终实现一个美观且具有良好用户体验的自定义控件。无论你是想提高自己的开发技能,还是仅仅出于对安卓开发的兴趣,这篇文章都将为你提供价值。
|
1月前
|
Android开发 开发者 UED
安卓开发中自定义View的实现与性能优化
【10月更文挑战第28天】在安卓开发领域,自定义View是提升应用界面独特性和用户体验的重要手段。本文将深入探讨如何高效地创建和管理自定义View,以及如何通过代码和性能调优来确保流畅的交互体验。我们将一起学习自定义View的生命周期、绘图基础和事件处理,进而探索内存和布局优化技巧,最终实现既美观又高效的安卓界面。
41 5
|
2月前
|
XML 前端开发 Java
安卓应用开发中的自定义View组件
【10月更文挑战第5天】自定义View是安卓应用开发的一块基石,它为开发者提供了无限的可能。通过掌握其原理和实现方法,可以创造出既美观又实用的用户界面。本文将引导你了解自定义View的创建过程,包括绘制技巧、事件处理以及性能优化等关键步骤。
|
3月前
|
Android开发 开发者
安卓开发中的自定义视图:从入门到精通
【9月更文挑战第19天】在安卓开发的广阔天地中,自定义视图是一块充满魔力的土地。它不仅仅是代码的堆砌,更是艺术与科技的完美结合。通过掌握自定义视图,开发者能够打破常规,创造出独一无二的用户界面。本文将带你走进自定义视图的世界,从基础概念到实战应用,一步步展示如何用代码绘出心中的蓝图。无论你是初学者还是有经验的开发者,这篇文章都将为你打开一扇通往创意和效率的大门。让我们一起探索自定义视图的秘密,将你的应用打造成一件艺术品吧!
72 10
|
1月前
|
开发框架 前端开发 Android开发
安卓与iOS开发中的跨平台策略
在移动应用开发的战场上,安卓和iOS两大阵营各据一方。随着技术的演进,跨平台开发框架成为开发者的新宠,旨在实现一次编码、多平台部署的梦想。本文将探讨跨平台开发的优势与挑战,并分享实用的开发技巧,帮助开发者在安卓和iOS的世界中游刃有余。
|
20天前
|
搜索推荐 前端开发 API
探索安卓开发中的自定义视图:打造个性化用户界面
在安卓应用开发的广阔天地中,自定义视图是一块神奇的画布,让开发者能够突破标准控件的限制,绘制出独一无二的用户界面。本文将带你走进自定义视图的世界,从基础概念到实战技巧,逐步揭示如何在安卓平台上创建和运用自定义视图来提升用户体验。无论你是初学者还是有一定经验的开发者,这篇文章都将为你打开新的视野,让你的应用在众多同质化产品中脱颖而出。
40 19
|
20天前
|
JSON Java API
探索安卓开发:打造你的首个天气应用
在这篇技术指南中,我们将一起潜入安卓开发的海洋,学习如何从零开始构建一个简单的天气应用。通过这个实践项目,你将掌握安卓开发的核心概念、界面设计、网络编程以及数据解析等技能。无论你是初学者还是有一定基础的开发者,这篇文章都将为你提供一个清晰的路线图和实用的代码示例,帮助你在安卓开发的道路上迈出坚实的一步。让我们一起开始这段旅程,打造属于你自己的第一个安卓应用吧!
45 14