使用TabActivity 实现滑动翻页(动画)和标签置底与定制效果

先看效果图:

\
 

TabActivity 并不难用,只需要你自己去扩展一些他的方法,就可以达到你自己想到效果。不多说了,把实现动画的部分贴出现,其他的自己看源码吧。
核心代码:

  @Override
  public void setCurrentTab(int index) {
  int mCurrentTabID = getCurrentTab();
  if (null != getCurrentView()) {
  // 第一次设置 Tab 时,该值为 null。
  if (isOpenAnimation) {
  if (mCurrentTabID == (mTabCount - 1) && index == 0) {
  getCurrentView().startAnimation(slideLeftOut);
  } else if (mCurrentTabID == 0 && index == (mTabCount - 1)) {
  getCurrentView().startAnimation(slideRightOut);
  } else if (index > mCurrentTabID) {
  getCurrentView().startAnimation(slideLeftOut);
  } else if (index < mCurrentTabID) {
  getCurrentView().startAnimation(slideRightOut);
  }
  }
  }
  super.setCurrentTab(index);
  if (isOpenAnimation) {
  if (mCurrentTabID == (mTabCount - 1) && index == 0) {
  getCurrentView().startAnimation(slideLeftIn);
  } else if (mCurrentTabID == 0 && index == (mTabCount - 1)) {
  getCurrentView().startAnimation(slideRightIn);
  } else if (index > mCurrentTabID) {
  getCurrentView().startAnimation(slideLeftIn);
  } else if (index < mCurrentTabID) {
  getCurrentView().startAnimation(slideRightIn);
  }
  }
  }

源代码:
 


转载:http://www.adobex.com/android/source/details/00000389.htm

你可能感兴趣的:(使用TabActivity)