Android点击按钮返回顶部 Android点击按钮返回顶部实现代码

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

Android点击按钮返回顶部 Android点击按钮返回顶部实现代码

DW的dory   2021-03-24 我要评论
想了解Android点击按钮返回顶部实现代码的相关内容吗,DW的dory在本文为您仔细讲解Android点击按钮返回顶部的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Android点击按钮返回顶部,Android返回顶部,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);
           }
         });
        }
      });
     }
   });

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们