当前位置: 代码迷 >> Android >> 【安卓】给ViewFlipper添指示器,类似ViewPagerIndicator库提供的那种、
  详细解决方案

【安卓】给ViewFlipper添指示器,类似ViewPagerIndicator库提供的那种、

热度:44   发布时间:2016-04-28 04:52:56.0
【安卓】给ViewFlipper加指示器,类似ViewPagerIndicator库提供的那种、!

思路:

1.viewPager有setOnPageChangeListener可以监听切换动作,但viewFlipper却死活没类似的东西。!

此处有一个变种思路,基于animation,animation结束时是有事件的,哈哈,搞定。!


viewFlipper.getInAnimation().setAnimationListener(				new Animation.AnimationListener() {					@Override					public void onAnimationStart(Animation animation) {						// TODO Auto-generated method stub					}					@Override					public void onAnimationRepeat(Animation animation) {						// TODO Auto-generated method stub					}					@Override					public void onAnimationEnd(Animation animation) {						// TODO Auto-generated method stub						//此处显示对应的点即可					}				});


效果: