我的编程空间,编程开发者的网络收藏夹
学习永远不晚

android ScrollView怎么实现水平滑动回弹

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

android ScrollView怎么实现水平滑动回弹

这篇文章主要介绍“android ScrollView怎么实现水平滑动回弹”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“android ScrollView怎么实现水平滑动回弹”文章能帮助大家解决问题。

效果图:

android ScrollView怎么实现水平滑动回弹

主要代码:

import android.content.Context;import android.graphics.Rect;import android.util.AttributeSet;import android.view.MotionEvent;import android.view.View;import android.view.animation.TranslateAnimation;import android.widget.HorizontalScrollView; public class MHorizontalScrollView extends HorizontalScrollView {     private View view;        private static final int deltaX = 1;    private Rect normalRt = new Rect();     public MHorizontalScrollView(Context context) {        super(context);    }     public MHorizontalScrollView(Context context, AttributeSet attrs) {        super(context, attrs);    }         protected void onFinishInflate() {        if (getChildCount() > 0) {            view = getChildAt(0);        }    }     @Override    public boolean onTouchEvent(MotionEvent event) {        if (view != null) {            onTouchEventImpl(event);        }        return super.onTouchEvent(event);    }     private void onTouchEventImpl(MotionEvent event) {        switch (event.getAction()) {        case MotionEvent.ACTION_MOVE:            // 在当前视图内容继续偏移(x , y)个单位,显示(可视)区域也跟着偏移(x,y)个单位            scrollBy(deltaX, 0);            // 当滚动到最左或最右时就不会再滚动,这时移动布局达到回弹效果            if (isLayoutMove()) {                if (normalRt.isEmpty()) {                    // 保存当前正常的布局位置,拉过头才能回弹到正常位置                    normalRt.set(view.getLeft(), view.getTop(),                            view.getRight(), view.getBottom());                 }                // 移动布局                view.layout(view.getLeft() - deltaX, view.getTop(),                        view.getRight() - deltaX, view.getBottom());            }            break;        case MotionEvent.ACTION_UP:            if (isNeedAnimation()) {                animationImpl();            }            break;        default:            break;        }    }         private void animationImpl() {        // 移动动画        TranslateAnimation ta = new TranslateAnimation(view.getLeft(),                normalRt.left, 0, 0);        // 动画持续时间        ta.setDuration(50);        view.startAnimation(ta);        // 设置回到当前正常的布局位置        view.layout(normalRt.left, normalRt.top, normalRt.right,                normalRt.bottom);        normalRt.setEmpty();    }         private boolean isNeedAnimation() {        return !normalRt.isEmpty();    }         private boolean isLayoutMove() {        int offset = view.getMeasuredWidth() - getWidth();        if (offset <= 0) {            return false;        }        // 上面已固定deltaX=1,scrollX永远等于1所以向右拉不动        // 但当向左拉动到内容布局的最右端时scrollX == offset时还可以继续拉动        int scrollX = getScrollX();        if (scrollX == 0 || scrollX == offset) {            return true;        }        return false;    } }

在xml布局文件里直接使用:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:tools="http://schemas.android.com/tools"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:orientation="vertical"     android:background="@drawable/background"    >     <cn.qhg.MHorizontalScrollView        android:layout_width="fill_parent"        android:layout_height="fill_parent"        android:scrollbars="none"         >         <LinearLayout            android:layout_width="fill_parent"            android:layout_height="fill_parent"            android:orientation="horizontal"             android:paddingTop="100dp"            android:id="@+id/ll_test"            android:onClick="test"            >             <ImageView                android:layout_width="wrap_content"                android:layout_height="wrap_content"                android:background="@drawable/house_1"                 android:layout_marginRight="40dp"                />             <ImageView                android:layout_width="wrap_content"                android:layout_height="wrap_content"                android:background="@drawable/house_4"                 android:layout_marginRight="40dp"                />             <ImageView                android:layout_width="wrap_content"                android:layout_height="wrap_content"                android:background="@drawable/house_2"                android:layout_marginRight="40dp"                 />             <ImageView                android:layout_width="wrap_content"                android:layout_height="wrap_content"                android:background="@drawable/house_3"                android:layout_marginRight="40dp"                 />            <ImageView                android:layout_width="wrap_content"                android:layout_height="wrap_content"                android:background="@drawable/house_1"                 android:layout_marginRight="40dp"                />             <ImageView                android:layout_width="wrap_content"                android:layout_height="wrap_content"                android:background="@drawable/house_4"                 android:layout_marginRight="40dp"                />             <ImageView                android:layout_width="wrap_content"                android:layout_height="wrap_content"                android:background="@drawable/house_2"                android:layout_marginRight="40dp"                 />             <ImageView                android:layout_width="wrap_content"                android:layout_height="wrap_content"                android:background="@drawable/house_3"                android:layout_marginRight="40dp"                 />            <!-- 使右边多空一点 -->            <ImageView                android:layout_width="wrap_content"                android:layout_height="wrap_content"                android:layout_marginRight="20dp"                 />        </LinearLayout>    </cn.qhg.MHorizontalScrollView> </LinearLayout>

关于“android ScrollView怎么实现水平滑动回弹”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注编程网行业资讯频道,小编每天都会为大家更新不同的知识点。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

android ScrollView怎么实现水平滑动回弹

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

android ScrollView怎么实现水平滑动回弹

这篇文章主要介绍“android ScrollView怎么实现水平滑动回弹”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“android ScrollView怎么实现水平滑动回弹”文章能帮助大家解决问
2023-06-30

android怎么实现可上下回弹的scrollview

本篇内容主要讲解“android怎么实现可上下回弹的scrollview”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“android怎么实现可上下回弹的scrollview”吧!1. 新建MyS
2023-06-30

Android中实现水平滑动(横向滑动)ListView示例

水平的ListView-HorizontalListView的使用 Android中ListView默认的是竖直方向的滑动,由于项目的需求,需要ListView是水平滑动的。有很多的方式可以实现,但是比较好的一种方式就是自己封装一个控件,使
2022-06-06

Android怎么自定义ScrollView实现阻尼回弹

今天小编给大家分享一下Android怎么自定义ScrollView实现阻尼回弹的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。
2023-06-29

Android怎么自定义scrollview实现回弹效果

本篇内容主要讲解“Android怎么自定义scrollview实现回弹效果”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Android怎么自定义scrollview实现回弹效果”吧!1. 新建M
2023-06-29

怎么在Android中使用ScrollView实现一个下拉弹回动画效果

本篇文章给大家分享的是有关怎么在Android中使用ScrollView实现一个下拉弹回动画效果,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。Android是什么Android
2023-05-30

Android怎么自定义View实现竖向滑动回弹效果

这篇文章主要介绍“Android怎么自定义View实现竖向滑动回弹效果”,在日常操作中,相信很多人在Android怎么自定义View实现竖向滑动回弹效果问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Andro
2023-06-30

Android怎么实现背景图滑动变大松开回弹效果

这篇文章主要讲解了“Android怎么实现背景图滑动变大松开回弹效果”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Android怎么实现背景图滑动变大松开回弹效果”吧!原图放大后1、自定义v
2023-06-30

Android怎么使用HorizontalScrollView实现水平滚动

要在Android中使用HorizontalScrollView实现水平滚动,可以按照以下步骤进行操作:1. 在XML布局文件中添加HorizontalScrollView控件,设置其宽度为match_parent,高度为wrap_cont
2023-08-18

android怎么实现可以滑动的平滑曲线图

本文小编为大家详细介绍“android怎么实现可以滑动的平滑曲线图”,内容详细,步骤清晰,细节处理妥当,希望这篇“android怎么实现可以滑动的平滑曲线图”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。1 att
2023-07-02

Android UI实现单行文本水平触摸滑动效果

本文实例为大家分享了单行文本水平触摸滑动效果,通过EditText实现TextView单行长文本水平滑动效果。 下一篇再为大家介绍 多行文本折叠展开效果,自定义布局View实现多行文本折叠和展开。 1.初衷 最近做应用的时候有用到TextV
2022-06-06

怎么在Android中利用ScrollView实现一个放大回弹效果

这期内容当中小编将会给大家带来有关怎么在Android中利用ScrollView实现一个放大回弹效果,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。自定义ScrollView1、创建一个类,继承Scroll
2023-05-31

Android 中怎么利用ScrollView实现反弹效果

本篇文章给大家分享的是有关Android 中怎么利用ScrollView实现反弹效果,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。自定义ScrollView控件:/** *
2023-05-30

Android中怎么利用Activity实现滑动返回

这期内容当中小编将会给大家带来有关Android中怎么利用Activity实现滑动返回,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。Android 滑动返回Activity的实现代码package com
2023-05-30

android怎么实现水平进度条

在Android中,可以使用ProgressBar控件来实现水平进度条。下面是一种简单的实现方法:1. 首先,在XML布局文件中添加一个ProgressBar控件:```xmlandroid:id="@+id/progressBar"and
2023-08-12

Android怎么实现橡皮筋回弹和平移缩放效果

这篇文章主要介绍“Android怎么实现橡皮筋回弹和平移缩放效果”,在日常操作中,相信很多人在Android怎么实现橡皮筋回弹和平移缩放效果问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Android怎么实现
2023-06-30

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录