Android使用Handler实现View弹性滑动
弹性滑动原理
将一次大的滑动非为若干次小的滑动,并在一个时间段内完成。更好的用户体验
实现方式很多种,包括用Scroller,动画,延时策略.
使用Handler实现弹性滑动
效果可以看到按钮Button向滑动。注意这里是将View的内容改变。
你可以试一试将Button外层的RelitiveLayout去掉,把id放在Button下。发现是Button的文字滑动
<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:id="@+id/button1"
android:layout_height="wrap_content"
android:layout_width="300dp"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:text="Button"/>
</RelativeLayout>
</RelativeLayout>
importandroid.os.Bundle;
importandroid.os.Handler;
importandroid.os.Message;
importandroid.widget.RelativeLayout;
publicclassMainActivityextendsActivity{
privatestaticfinalintMESSAGE_SCROLL_TO=1;
privatestaticfinalintFRAME_OUT=30;
privatestaticfinalintDELAYED_TIME=30;
privateRelativeLayoutbutton;
privateintmcount;
privateHandlerhandler=newHandler(){
publicvoidhandleMessage(Messagemsg){
switch(msg.what){
caseMESSAGE_SCROLL_TO:
mcount++;
if(mcount<=FRAME_OUT){
floatfraction=mcount/(float)FRAME_OUT;
intscrollx=(int)(fraction*100);
button.scrollTo(scrollx,0);
handler.sendEmptyMessageDelayed(MESSAGE_SCROLL_TO,DELAYED_TIME);
}
break;
default:
break;
}
}
};
@Override
protectedvoidonCreate(BundlesavedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
button=(RelativeLayout)findViewById(R.id.button1);
handler.sendEmptyMessageDelayed(MESSAGE_SCROLL_TO,DELAYED_TIME);
}
}
以上所述是小编给大家介绍的Android使用Handler实现View弹性滑动,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对毛票票网站的支持!
