在Android应用中,一般TabActivity和若干个Tab选项卡(TabWidget)。如果选项卡的数量超过了5个,就不适合放到一个屏幕中,这样可以让这些选项卡滑动起来。
滑动的选项卡的实现有好几种方式,在这些方式中,最简单也是我最满意的还是在原生的TabActivity上修改,将上面的选项卡改为可滑动的状态。这样既有新的滑动的效果,也保留了原有TabActivity的各项功能。
实现Tab可滑动基本的思路就是把上面的TabWidget放到一个HorizontalScrollView中,让TabWidget滑动起来。不过如果仅仅修改XML还是会产生问题,就是没有办法控制每个选项卡的宽度。所以还是需要在程序中设置每个选项卡的宽度。例如:
// 设置窗口的宽度 DisplayMetrics dm = new DisplayMetrics(); getWindowManager().getDefaultDisplay().getMetrics(dm); int screenWidth = dm.widthPixels; if (count < 4) { for (int i = 0; i < count; i++) { // 设置每个选项卡的宽度 tabWidget.getChildTabViewAt(i).setMinimumWidth(screenWidth / 4); } }
<linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <tabhost android:id="@android:id/tabhost" android:layout_width="fill_parent" android:layout_height="fill_parent"> <linearlayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <horizontalscrollview android:layout_height="wrap_content" android:layout_width="fill_parent" android:scrollbars="none"> <tabwidget android:id="@android:id/tabs" android:layout_width="fill_parent" android:layout_height="60dp" /> <framelayout android:id="@android:id/tabcontent" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1" />
效果图如下:
package com.xu81.testflip; import java.util.Vector; import android.content.Context; import android.util.AttributeSet; import android.view.MotionEvent; import android.view.VelocityTracker; import android.view.View; import android.view.ViewConfiguration; import android.view.ViewGroup; import android.widget.Scroller; public class ScrollLayout extends ViewGroup { private Scroller mScroller; private VelocityTracker mVelocityTracker; private int mCurScreen; private int mDefaultScreen = 0; private static final int TOUCH_STATE_REST = 0; private static final int TOUCH_STATE_SCROLLING = 1; private static final int SNAP_VELOCITY = 500; private int mTouchState = TOUCH_STATE_REST; private int mTouchSlop; private float mLastMotionX; private int sensitivity = 30; private boolean spring; private Vector listeners; public ScrollLayout(Context context, AttributeSet attrs) { super(context, attrs); // TODO Auto-generated constructor stub mScroller = new Scroller(context); mCurScreen = mDefaultScreen; mTouchSlop = ViewConfiguration.get(getContext()).getScaledTouchSlop(); listeners = new Vector(); } public void addChangeListener(LayoutChangeListener listener) { listeners.add(listener); } @Override protected void onLayout(boolean changed, int l, int t, int r, int b) { // TODO Auto-generated method stub int childLeft = 0; final int childCount = getChildCount(); for (int i = 0; i < childCount; i++) { final View childView = getChildAt(i); if (childView.getVisibility() != View.GONE) { final int childWidth = childView.getMeasuredWidth(); childView.layout(childLeft, 0, childLeft + childWidth, childView.getMeasuredHeight()); childLeft += childWidth; } } } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { super.onMeasure(widthMeasureSpec, heightMeasureSpec); final int width = MeasureSpec.getSize(widthMeasureSpec); final int widthMode = MeasureSpec.getMode(widthMeasureSpec); if (widthMode != MeasureSpec.EXACTLY) { throw new IllegalStateException( "ScrollLayout only canmCurScreen run at EXACTLY mode!"); } final int heightMode = MeasureSpec.getMode(heightMeasureSpec); if (heightMode != MeasureSpec.EXACTLY) { throw new IllegalStateException( "ScrollLayout only can run at EXACTLY mode!"); } // The children are given the same width and height as the scrollLayout final int count = getChildCount(); for (int i = 0; i < count; i++) { getChildAt(i).measure(widthMeasureSpec, heightMeasureSpec); } scrollTo(mCurScreen * width, 0); } public void snapToDestination() { final int screenWidth = getWidth(); final int destScreen = (getScrollX() + screenWidth / 2) / screenWidth; snapToScreen(destScreen); } public void snapToScreen(int whichScreen) { // get the valid layout page int lastIndex = mCurScreen; whichScreen = Math.max(0, Math.min(whichScreen, getChildCount() - 1)); if (getScrollX() != (whichScreen * getWidth())) { final int delta = whichScreen * getWidth() - getScrollX(); mScroller.startScroll(getScrollX(), 0, delta, 0, Math.abs(delta) * 2); mCurScreen = whichScreen; invalidate(); // Redraw the layout } for (LayoutChangeListener listener : listeners) listener.doChange(lastIndex, whichScreen); } public void setToScreen(int whichScreen) { whichScreen = Math.max(0, Math.min(whichScreen, getChildCount() - 1)); mCurScreen = whichScreen; scrollTo(whichScreen * getWidth(), 0); } public int getCurScreen() { return mCurScreen; } @Override public void computeScroll() { // TODO Auto-generated method stub if (mScroller.computeScrollOffset()) { scrollTo(mScroller.getCurrX(), mScroller.getCurrY()); postInvalidate(); } } public boolean isSpring() { return spring; } public void setSpring(boolean spring) { this.spring = spring; } @Override public boolean onTouchEvent(MotionEvent event) { // TODO Auto-generated method stub if (mVelocityTracker == null) mVelocityTracker = VelocityTracker.obtain(); mVelocityTracker.addMovement(event); final int action = event.getAction(); final float x = event.getX(); switch (action) { case MotionEvent.ACTION_DOWN: if (!mScroller.isFinished()) mScroller.abortAnimation(); mLastMotionX = x; break; case MotionEvent.ACTION_MOVE: int deltaX = (int) (mLastMotionX - x); if (Math.abs(deltaX) > sensitivity) { // 左滑动为正数、右为负数 if (spring) { scrollBy(deltaX, 0); mLastMotionX = x; } else { final int childCount = getChildCount(); boolean max = mCurScreen < childCount - 1; boolean min = mCurScreen > 0; boolean canMove = deltaX > 0 ? (max ? true : false) : (min ? true : false); if (canMove) { scrollBy(deltaX, 0); mLastMotionX = x; } } } break; case MotionEvent.ACTION_UP: final VelocityTracker velocityTracker = mVelocityTracker; velocityTracker.computeCurrentVelocity(1000); int velocityX = (int) velocityTracker.getXVelocity(); if (velocityX > SNAP_VELOCITY && mCurScreen > 0) { // Fling enough to move left snapToScreen(mCurScreen - 1); } else if (velocityX < -SNAP_VELOCITY && mCurScreen < getChildCount() - 1) { // Fling enough to move right snapToScreen(mCurScreen + 1); } else { snapToDestination(); } if (mVelocityTracker != null) { mVelocityTracker.recycle(); mVelocityTracker = null; } mTouchState = TOUCH_STATE_REST; break; case MotionEvent.ACTION_CANCEL: mTouchState = TOUCH_STATE_REST; break; } return true; } @Override public boolean onInterceptTouchEvent(MotionEvent ev) { // TODO Auto-generated method stub final int action = ev.getAction(); if ((action == MotionEvent.ACTION_MOVE) && (mTouchState != TOUCH_STATE_REST)) return true; final float x = ev.getX(); switch (action) { case MotionEvent.ACTION_MOVE: final int xDiff = (int) Math.abs(mLastMotionX - x); if (xDiff > mTouchSlop) mTouchState = TOUCH_STATE_SCROLLING; break; case MotionEvent.ACTION_DOWN: mLastMotionX = x; mTouchState = mScroller.isFinished() ? TOUCH_STATE_REST : TOUCH_STATE_SCROLLING; break; case MotionEvent.ACTION_CANCEL: case MotionEvent.ACTION_UP: mTouchState = TOUCH_STATE_REST; break; } return mTouchState != TOUCH_STATE_REST; } }
这是模仿qq的滑动实现,和tab不是一个思路,也比较美观实用可以借鉴
附件源码下载...
相关推荐
在Android开发中,"可滑动的TabHost"是一种常见的用户界面组件,它结合了TabHost和ViewPager的优点,提供了一种动态、可滑动的方式来切换不同的内容片段。TabHost是Android原生的一个组件,用于创建带有多个选项卡的...
总的来说,自定义TabHost是一个涉及UI设计和交互逻辑的过程,它可以让你的Android应用拥有独特的标签栏设计。通过学习和实践,开发者可以根据项目需求创建出符合品牌形象且功能完善的标签栏,提高用户的使用体验。
7. **初始化TabHost**: 尽管不直接使用TabHost,但我们可以模仿它的行为,创建一个自定义的Tab布局,将每个Tab的标题和对应的Fragment关联起来。 总结,这个示例项目展示了如何在Android应用中使用FragmentActivity...
"android 滑动的tabhost"是指将传统的TabHost与手势滑动结合,实现更流畅、更具互动性的用户体验。在本教程中,我们将深入探讨如何实现这样一个功能,并涉及以下几个关键知识点: 1. **TabHost基本用法**: - ...
通过这个"SlidingDemo"项目,开发者不仅可以学习如何将TabHost和ViewPager结合起来,还可以了解到如何处理Android应用的兼容性问题,以及如何通过自定义样式来提升用户体验。对于初学者来说,这是一个很好的学习实践...
在Android开发中,TabHost是一个非常重要的组件,用于创建具有多个小部件或活动的多页视图。TabHost通常与TabWidget和FrameLayout一起使用,为用户提供了一个可以在多个标签之间切换的界面,既可以通过点击标签进行...
以前做这种新闻标签页都是用...当把api升级到最新后发现这个LocalActivityManager已经被废弃了,取而代之的是FragmentManager,经过一下午的研究终于用FragmentManager实现了新闻滑动标签页的效果。
在Activity的`onCreate()`方法中,你需要初始化TabHost并设置其ID为`android.R.id.tabhost`。这可以通过调用`TabHost.setup()`方法来完成。 ```java TabHost tabHost = (TabHost) findViewById(R.id.tabhost); ...
5. **关联TabHost和ViewPager**:为了将TabHost的视觉元素与ViewPager的滑动行为关联起来,我们可以使用`TabLayout`。TabLayout是Material Design库中的组件,可以方便地与ViewPager配合使用。在布局文件中添加...
在Android开发中,TabHost是一个非常重要的组件,用于创建具有多个Tab标签的界面,每个标签页可以关联不同的Activity或者Fragment,实现多视图间的切换。本教程将详细讲解如何利用TabHost结合ListView、ViewPager和...
通过以上步骤,你可以成功地自定义Android中的TabHost组件,使其显示在屏幕底部并实现滑动切换页面的功能。这将极大地提升应用的用户交互体验,使得用户可以方便地在不同的功能之间切换。记得下载提供的TestTabHost2...
3. 将ViewPager的滑动事件与TabHost的选中状态关联起来。当用户在ViewPager中滑动时,TabHost的选中标签应该相应改变;反之,当用户点击TabHost上的标签时,ViewPager应该滚动到对应的页面。这种联动可以通过监听...
在这个示例中,开发者可能将`TabHost`和`ViewPager`结合起来,使得`TabHost`的标签页可以滑动切换,这样既保留了`TabHost`的直观导航方式,又利用了`ViewPager`的滑动特性。具体实现可能包括以下几个步骤: 1. 创建...
在Android开发中,TabHost是一个非常重要的组件,它主要用于创建多标签的应用界面,让用户可以通过不同的标签页访问不同的功能或内容。标题"tabhost 能够通过手势滑动"揭示了一个特性,即TabHost不仅能够通过点击来...
5. **实现滑动切换**:为了让`TabHost`的标签跟随`ViewPager`的滑动而改变选中状态,可以监听`ViewPager`的`OnPageChangeListener`,在`onPageSelected()`方法中更新`TabHost`的选中标签。 6. **运行并测试**:最后...
TabHost tabHost = (TabHost) findViewById(android.R.id.tabhost); tabHost.setup(); // 创建并添加第一个标签 TabSpec spec1 = tabHost.newTabSpec("tag1"); spec1.setIndicator("标签1") .setContent(new ...
通过这个“tabhost滑动刷新.rar”示例,开发者可以学习如何在传统的`TabHost`基础上,利用现代的Android组件提升用户体验,使应用更加互动和动态。这种结合使用的方法在当今的Android应用开发中非常常见,尤其是在...
android实现可滑动标签页有很多方法,这里给大家介绍一种官方推荐,性能最高,并且代码最少的方式,就是利用FragmentTabhost+ViewPager+FragmentPagerAdapter来实现。
在Android开发中,`TabHost` 是一个非常重要的组件,它允许我们创建具有多个标签页的应用界面,每个标签页对应不同的活动(Activity)或者视图(View)。然而,原生的`TabHost`并不支持滑动切换标签页,这使得用户...
通过TabHost的setup()方法将其与TabWidget和FrameLayout关联起来。 ```java TabHost tabHost = (TabHost) findViewById(R.id.tabhost); tabHost.setup(); ``` 3. 添加TabSpec: 使用TabHost的newTabSpec()方法...