android让你的TabHost滑动起来

在Android应用中,一般TabActivity和若干个Tab选项卡(TabWidget)。如果选项卡的数量超过了5个,就不适合放到一个屏幕中,这样可以让这些选项卡滑动起来。
滑动的选项卡的实现有好几种方式,在这些方式中,最简单也是我最满意的还是在原生的TabActivity上修改,将上面的选项卡改为可滑动的状态。这样既有新的滑动的效果,也保留了原有TabActivity的各项功能。
实现Tab可滑动基本的思路就是把上面的TabWidget放到一个HorizontalScrollView中,让TabWidget滑动起来。不过如果仅仅修改XML还是会产生问题,就是没有办法控制每个选项卡的宽度。所以还是需要在程序中设置每个选项卡的宽度。例如:
  1. // 设置窗口的宽度 
  2. DisplayMetrics dm = new DisplayMetrics(); 
  3. getWindowManager().getDefaultDisplay().getMetrics(dm); 
  4. int screenWidth = dm.widthPixels; 
  5. if (count < 4) { 
  6.     for (int i = 0; i < count; i++) { 
  7.         // 设置每个选项卡的宽度 
  8.         tabWidget.getChildTabViewAt(i).setMinimumWidth(screenWidth / 4); 
  9.     } 
  10. }
复制代码
自定义TabActivity主界面的XML:

  1. <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" 
  2.     android:orientation="vertical" android:layout_width="fill_parent"
  3.     android:layout_height="fill_parent"> 
  4.     <tabhost android:id="@android:id/tabhost" android:layout_width="fill_parent" 
  5.         android:layout_height="fill_parent"> 
  6.         <linearlayout android:orientation="vertical" 
  7.             android:layout_width="fill_parent" android:layout_height="fill_parent"> 
  8.             <horizontalscrollview android:layout_height="wrap_content" 
  9.                 android:layout_width="fill_parent" android:scrollbars="none"> 
  10.                 <tabwidget android:id="@android:id/tabs" 
  11.                     android:layout_width="fill_parent" android:layout_height="60dp" /> 
  12.              
  13.             <framelayout android:id="@android:id/tabcontent" 
  14.                 android:layout_width="fill_parent" android:layout_height="wrap_content"
  15.                 android:layout_weight="1" /> 
  16.          
  17.      
复制代码
效果图如下
android让你的TabHost滑动起来_第1张图片 

上面的tab是可以滑动的,屏幕左右滑动,tab也会切换
  1. package com.xu81.testflip;

  2. import java.util.Vector;

  3. import android.content.Context;
  4. import android.util.AttributeSet;
  5. import android.view.MotionEvent;
  6. import android.view.VelocityTracker;
  7. import android.view.View;
  8. import android.view.ViewConfiguration;
  9. import android.view.ViewGroup;
  10. import android.widget.Scroller;

  11. public class ScrollLayout extends ViewGroup {

  12.         private Scroller mScroller;
  13.         private VelocityTracker mVelocityTracker;
  14.         private int mCurScreen;
  15.         private int mDefaultScreen = 0;
  16.         private static final int TOUCH_STATE_REST = 0;
  17.         private static final int TOUCH_STATE_SCROLLING = 1;
  18.         private static final int SNAP_VELOCITY = 500;
  19.         private int mTouchState = TOUCH_STATE_REST;
  20.         private int mTouchSlop;
  21.         private float mLastMotionX;
  22.         private int sensitivity = 30;
  23.         private boolean spring;
  24.         private Vector listeners;

  25.         public ScrollLayout(Context context, AttributeSet attrs) {
  26.                 super(context, attrs);
  27.                 // TODO Auto-generated constructor stub
  28.                 mScroller = new Scroller(context);
  29.                 mCurScreen = mDefaultScreen;
  30.                 mTouchSlop = ViewConfiguration.get(getContext()).getScaledTouchSlop();
  31.                 listeners = new Vector();
  32.         }

  33.         public void addChangeListener(LayoutChangeListener listener) {
  34.                 listeners.add(listener);
  35.         }

  36.         @Override
  37.         protected void onLayout(boolean changed, int l, int t, int r, int b) {
  38.                 // TODO Auto-generated method stub
  39.                 int childLeft = 0;
  40.                 final int childCount = getChildCount();
  41.                 for (int i = 0; i < childCount; i++) {
  42.                         final View childView = getChildAt(i);
  43.                         if (childView.getVisibility() != View.GONE) {
  44.                                 final int childWidth = childView.getMeasuredWidth();
  45.                                 childView.layout(childLeft, 0, childLeft + childWidth,
  46.                                                 childView.getMeasuredHeight());
  47.                                 childLeft += childWidth;
  48.                         }
  49.                 }
  50.         }

  51.         @Override
  52.         protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
  53.                 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
  54.                 final int width = MeasureSpec.getSize(widthMeasureSpec);
  55.                 final int widthMode = MeasureSpec.getMode(widthMeasureSpec);
  56.                 if (widthMode != MeasureSpec.EXACTLY) {
  57.                         throw new IllegalStateException(
  58.                                         "ScrollLayout only canmCurScreen run at EXACTLY mode!");
  59.                 }

  60.                 final int heightMode = MeasureSpec.getMode(heightMeasureSpec);
  61.                 if (heightMode != MeasureSpec.EXACTLY) {
  62.                         throw new IllegalStateException(
  63.                                         "ScrollLayout only can run at EXACTLY mode!");
  64.                 }

  65.                 // The children are given the same width and height as the scrollLayout
  66.                 final int count = getChildCount();
  67.                 for (int i = 0; i < count; i++) {
  68.                         getChildAt(i).measure(widthMeasureSpec, heightMeasureSpec);
  69.                 }
  70.                 scrollTo(mCurScreen * width, 0);
  71.         }

  72.         public void snapToDestination() {
  73.                 final int screenWidth = getWidth();
  74.                 final int destScreen = (getScrollX() + screenWidth / 2) / screenWidth;
  75.                 snapToScreen(destScreen);
  76.         }

  77.         public void snapToScreen(int whichScreen) {
  78.                 // get the valid layout page
  79.                 int lastIndex = mCurScreen;
  80.                 whichScreen = Math.max(0, Math.min(whichScreen, getChildCount() - 1));
  81.                 if (getScrollX() != (whichScreen * getWidth())) {

  82.                         final int delta = whichScreen * getWidth() - getScrollX();
  83.                         mScroller.startScroll(getScrollX(), 0, delta, 0,
  84.                                         Math.abs(delta) * 2);
  85.                         mCurScreen = whichScreen;
  86.                         invalidate(); // Redraw the layout
  87.                 }
  88.                 for (LayoutChangeListener listener : listeners)
  89.                         listener.doChange(lastIndex, whichScreen);
  90.         }

  91.         public void setToScreen(int whichScreen) {
  92.                 whichScreen = Math.max(0, Math.min(whichScreen, getChildCount() - 1));
  93.                 mCurScreen = whichScreen;
  94.                 scrollTo(whichScreen * getWidth(), 0);
  95.         }

  96.         public int getCurScreen() {
  97.                 return mCurScreen;
  98.         }

  99.         @Override
  100.         public void computeScroll() {
  101.                 // TODO Auto-generated method stub
  102.                 if (mScroller.computeScrollOffset()) {
  103.                         scrollTo(mScroller.getCurrX(), mScroller.getCurrY());
  104.                         postInvalidate();
  105.                 }
  106.         }

  107.         public boolean isSpring() {
  108.                 return spring;
  109.         }

  110.         public void setSpring(boolean spring) {
  111.                 this.spring = spring;
  112.         }

  113.         @Override
  114.         public boolean onTouchEvent(MotionEvent event) {
  115.                 // TODO Auto-generated method stub
  116.                 if (mVelocityTracker == null)
  117.                         mVelocityTracker = VelocityTracker.obtain();
  118.                 mVelocityTracker.addMovement(event);
  119.                 final int action = event.getAction();
  120.                 final float x = event.getX();
  121.                 switch (action) {
  122.                 case MotionEvent.ACTION_DOWN:
  123.                         if (!mScroller.isFinished())
  124.                                 mScroller.abortAnimation();
  125.                         mLastMotionX = x;
  126.                         break;
  127.                 case MotionEvent.ACTION_MOVE:
  128.                         int deltaX = (int) (mLastMotionX - x);
  129.                         if (Math.abs(deltaX) > sensitivity) {
  130.                                 // 左滑动为正数、右为负数
  131.                                 if (spring) {
  132.                                         scrollBy(deltaX, 0);
  133.                                         mLastMotionX = x;
  134.                                 } else {
  135.                                         final int childCount = getChildCount();
  136.                                         boolean max = mCurScreen < childCount - 1;
  137.                                         boolean min = mCurScreen > 0;
  138.                                         boolean canMove = deltaX > 0 ? (max ? true : false)
  139.                                                         : (min ? true : false);
  140.                                         if (canMove) {
  141.                                                 scrollBy(deltaX, 0);
  142.                                                 mLastMotionX = x;
  143.                                         }
  144.                                 }
  145.                         }
  146.                         break;
  147.                 case MotionEvent.ACTION_UP:
  148.                         final VelocityTracker velocityTracker = mVelocityTracker;
  149.                         velocityTracker.computeCurrentVelocity(1000);
  150.                         int velocityX = (int) velocityTracker.getXVelocity();
  151.                         if (velocityX > SNAP_VELOCITY && mCurScreen > 0) {
  152.                                 // Fling enough to move left
  153.                                 snapToScreen(mCurScreen - 1);
  154.                         } else if (velocityX < -SNAP_VELOCITY
  155.                                         && mCurScreen < getChildCount() - 1) {
  156.                                 // Fling enough to move right
  157.                                 snapToScreen(mCurScreen + 1);
  158.                         } else {
  159.                                 snapToDestination();
  160.                         }
  161.                         if (mVelocityTracker != null) {
  162.                                 mVelocityTracker.recycle();
  163.                                 mVelocityTracker = null;
  164.                         }
  165.                         mTouchState = TOUCH_STATE_REST;
  166.                         break;
  167.                 case MotionEvent.ACTION_CANCEL:
  168.                         mTouchState = TOUCH_STATE_REST;
  169.                         break;
  170.                 }
  171.                 return true;
  172.         }

  173.         @Override
  174.         public boolean onInterceptTouchEvent(MotionEvent ev) {
  175.                 // TODO Auto-generated method stub
  176.                 final int action = ev.getAction();
  177.                 if ((action == MotionEvent.ACTION_MOVE)
  178.                                 && (mTouchState != TOUCH_STATE_REST))
  179.                         return true;
  180.                 final float x = ev.getX();
  181.                 switch (action) {
  182.                 case MotionEvent.ACTION_MOVE:
  183.                         final int xDiff = (int) Math.abs(mLastMotionX - x);
  184.                         if (xDiff > mTouchSlop)
  185.                                 mTouchState = TOUCH_STATE_SCROLLING;
  186.                         break;
  187.                 case MotionEvent.ACTION_DOWN:
  188.                         mLastMotionX = x;
  189.                         mTouchState = mScroller.isFinished() ? TOUCH_STATE_REST
  190.                                         : TOUCH_STATE_SCROLLING;
  191.                         break;
  192.                 case MotionEvent.ACTION_CANCEL:
  193.                 case MotionEvent.ACTION_UP:
  194.                         mTouchState = TOUCH_STATE_REST;
  195.                         break;
  196.                 }
  197.                 return mTouchState != TOUCH_STATE_REST;
  198.         }

  199. }
复制代码
android让你的TabHost滑动起来_第2张图片 

这是模仿qq的滑动实现,和tab不是一个思路,也比较美观实用可以借鉴

你可能感兴趣的:(android让你的TabHost滑动起来)