Android点击按钮返回顶部实现代码
更新时间:2017年02月17日 10:23:20 作者:DW的dory
这篇文章主要为大家详细介绍了Android返回顶部实现代码,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
点击按钮返回顶部,直接上代码吧
布局文件
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#ffffff" android:orientation="vertical"> <ScrollView android:id="@+id/sv_home" android:layout_width="match_parent" android:layout_height="wrap_content" android:fillViewport="true"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> <ImageView android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@mipmap/eason"/> <ImageView android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@mipmap/eason"/> <ImageView android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@mipmap/eason"/> <android.support.design.widget.FloatingActionButton android:id="@+id/fab_top" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="right|bottom" android:layout_marginRight="10dp" android:src="@mipmap/top" app:backgroundTint="#ecefef" app:elevation="10dp" app:pressedTranslationZ="12dp" app:rippleColor="@color/colorPrimary" /> </LinearLayout> </ScrollView> </LinearLayout>
按钮点击事件
topBtn.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { sc.post(new Runnable() { @Override public void run() { sc.post(new Runnable() { public void run() { // 返回顶部 sc.fullScroll(ScrollView.FOCUS_UP); } }); } }); } });
附带一个跳到底部
bottomBtn.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { sc.post(new Runnable() { @Override public void run() { sc.post(new Runnable() { public void run() { // 滚动到底部 sc.fullScroll(ScrollView.FOCUS_DOWN); } }); } }); } });
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
相关文章
Android 提交或者上传数据时的dialog弹框动画效果
我们在使用支付宝支付的时候会看到类似这种弹框动画效果,下面通过实例代码给大家分享android 提交或者上传数据时的弹框动画效果,感兴趣的的朋友参考下2017-07-07一文搞懂Android RecyclerView点击展开、折叠效果的实现代码
虽然在日常开发中已经多次接触过RecycleView,但也只是用到其最基本的功能,并没有深入研究其他内容。接下来将抽出时间去了解RecycleView的相关内容,这篇文章主要是介绍Android RecyclerView点击展开、折叠效果的实现方式,一起看看吧2021-06-06使用AccessibilityService实现微信自动切换账号功能
这篇文章主要为大家详细介绍了使用AccessibilityService实现微信自动切换账号功能,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2019-12-12
最新评论