欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

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

时间:2021-02-02 10:11:57|栏目: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仿QQ空间底部菜单示例代码

栏    目:Android代码

下一篇:Android如何通过命令行操作Sqlite3数据库的方法

本文标题:Android点击按钮返回顶部实现代码

本文地址:http://www.codeinn.net/misctech/55786.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有