package cn.testscrollview;
import android.os.Bundle;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnTouchListener;
import android.widget.ScrollView;
import android.app.Activity;
/**
 * Demo描述:
 * 监听ScrollView滑动到顶端和底部
 *
 * 注意事项:
 * 1 mScrollView.getChildAt(0).getMeasuredHeight()表示:
 *   ScrollView所占的高度.即ScrollView内容的高度.常常有一
 *   部分内容要滑动后才可见,这部分的高度也包含在了
 *   mScrollView.getChildAt(0).getMeasuredHeight()中
 *  
 * 2 view.getScrollY表示:
 *   ScrollView顶端已经滑出去的高度
 *  
 * 3 view.getHeight()表示:
 *   ScrollView的可见高度
 *  
 */
public class MainActivity extends Activity {
    private ScrollView mScrollView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        init();
    }
    private void init(){
        mScrollView=(ScrollView) findViewById(R.id.scrollView);
        mScrollView.setOnTouchListener(new TouchListenerImpl());
    }
    private class TouchListenerImpl implements OnTouchListener{
        @Override
        public boolean onTouch(View view, MotionEvent motionEvent) {
            switch (motionEvent.getAction()) {
            case MotionEvent.ACTION_DOWN:
 
                break;
            case MotionEvent.ACTION_MOVE:
                 int scrollY=view.getScrollY();
                 int height=view.getHeight();
                 int scrollViewMeasuredHeight=mScrollView.getChildAt(0).getMeasuredHeight();
                 if(scrollY==0){
                        System.out.println("滑动到了顶端 view.getScrollY()="+scrollY);
                    }
                 if((scrollY+height)==scrollViewMeasuredHeight){
                        System.out.println("滑动到了底部 scrollY="+scrollY);
                        System.out.println("滑动到了底部 height="+height);
                        System.out.println("滑动到了底部 scrollViewMeasuredHeight="+scrollViewMeasuredHeight);
                    }
                break;
 
            default:
                break;
            }
            return false;
        }
         
    };
}
 
二 。

有时候我们需要监听ScroView的滑动情况,比如滑动了多少距离,是否滑到布局的顶部或者底部。可惜的是SDK并没有相应的方法,不过倒是提供了一个

  1. protected void onScrollChanged(int x, int y, int oldx, int oldy)

方法,显然这个方法是不能被外界调用的,因此就需要把它暴露出去,方便使用。解决方式就是写一个接口,

  1. package com.example.demo1;
  2. public interface ScrollViewListener {
  3. void onScrollChanged(ObservableScrollView scrollView, int x, int y, int oldx, int oldy);
  4. }

然后重写ScrollView类,给它提供上面写的回调接口。

  1. package com.example.demo1;
  2. import android.content.Context;
  3. import android.util.AttributeSet;
  4. import android.widget.ScrollView;
  5. public class ObservableScrollView extends ScrollView {
  6. private ScrollViewListener scrollViewListener = null;
  7. public ObservableScrollView(Context context) {
  8. super(context);
  9. }
  10. public ObservableScrollView(Context context, AttributeSet attrs,
  11. int defStyle) {
  12. super(context, attrs, defStyle);
  13. }
  14. public ObservableScrollView(Context context, AttributeSet attrs) {
  15. super(context, attrs);
  16. }
  17. public void setScrollViewListener(ScrollViewListener scrollViewListener) {
  18. this.scrollViewListener = scrollViewListener;
  19. }
  20. @Override
  21. protected void onScrollChanged(int x, int y, int oldx, int oldy) {
  22. super.onScrollChanged(x, y, oldx, oldy);
  23. if (scrollViewListener != null) {
  24. scrollViewListener.onScrollChanged(this, x, y, oldx, oldy);
  25. }
  26. }
  27. }

注意在xml布局的时候,不要写错了包。

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="horizontal"
  6. android:paddingBottom="@dimen/activity_vertical_margin"
  7. android:paddingLeft="@dimen/activity_horizontal_margin"
  8. android:paddingRight="@dimen/activity_horizontal_margin"
  9. android:paddingTop="@dimen/activity_vertical_margin"
  10. tools:context=".MainActivity" >
  11. <com.example.demo1.ObservableScrollView
  12. android:id="@+id/view1"
  13. android:layout_width="wrap_content"
  14. android:layout_height="match_parent" >
  15. <LinearLayout
  16. android:layout_width="wrap_content"
  17. android:layout_height="match_parent"
  18. android:orientation="vertical" >
  19. <TextView
  20. android:layout_width="100dp"
  21. android:layout_height="100dp"
  22. android:text="试试1" />
  23. <TextView
  24. android:layout_width="100dp"
  25. android:layout_height="100dp"
  26. android:text="试试2" />
  27. <TextView
  28. android:layout_width="100dp"
  29. android:layout_height="100dp"
  30. android:text="试试3" />
  31. <TextView
  32. android:layout_width="100dp"
  33. android:layout_height="100dp"
  34. android:text="试试4" />
  35. <TextView
  36. android:layout_width="100dp"
  37. android:layout_height="100dp"
  38. android:text="试试5" />
  39. <TextView
  40. android:layout_width="100dp"
  41. android:layout_height="100dp"
  42. android:text="试试6" />
  43. </LinearLayout>
  44. </com.example.demo1.ObservableScrollView>
  45. <com.example.demo1.ObservableScrollView
  46. android:id="@+id/view2"
  47. android:layout_width="wrap_content"
  48. android:layout_height="match_parent" >
  49. <LinearLayout
  50. android:layout_width="wrap_content"
  51. android:layout_height="match_parent"
  52. android:orientation="vertical" >
  53. <TextView
  54. android:layout_width="100dp"
  55. android:layout_height="100dp"
  56. android:text="试试1" />
  57. <TextView
  58. android:layout_width="100dp"
  59. android:layout_height="100dp"
  60. android:text="试试2" />
  61. <TextView
  62. android:layout_width="100dp"
  63. android:layout_height="100dp"
  64. android:text="试试3" />
  65. <TextView
  66. android:layout_width="100dp"
  67. android:layout_height="100dp"
  68. android:text="试试4" />
  69. <TextView
  70. android:layout_width="100dp"
  71. android:layout_height="100dp"
  72. android:text="试试5" />
  73. <TextView
  74. android:layout_width="100dp"
  75. android:layout_height="100dp"
  76. android:text="试试6" />
  77. </LinearLayout>
  78. </com.example.demo1.ObservableScrollView>
  79. </LinearLayout>

最后activity代码如下,

  1. package com.example.demo1;
  2. import android.os.Bundle;
  3. import android.app.Activity;
  4. import android.view.Menu;
  5. public class MainActivity extends Activity implements ScrollViewListener {
  6. private ObservableScrollView scrollView1 = null;
  7. private ObservableScrollView scrollView2 = null;
  8. @Override
  9. protected void onCreate(Bundle savedInstanceState) {
  10. super.onCreate(savedInstanceState);
  11. setContentView(R.layout.activity_main);
  12. scrollView1 = (ObservableScrollView) findViewById(R.id.view1);
  13. scrollView1.setScrollViewListener(this);
  14. scrollView2 = (ObservableScrollView) findViewById(R.id.view2);
  15. scrollView2.setScrollViewListener(this);
  16. }
  17. @Override
  18. public boolean onCreateOptionsMenu(Menu menu) {
  19. // Inflate the menu; this adds items to the action bar if it is present.
  20. getMenuInflater().inflate(R.menu.main, menu);
  21. return true;
  22. }
  23. @Override
  24. public void onScrollChanged(ObservableScrollView scrollView, int x, int y,
  25. int oldx, int oldy) {
  26. if (scrollView == scrollView1) {
  27. scrollView2.scrollTo(x, y);
  28. } else if (scrollView == scrollView2) {
  29. scrollView1.scrollTo(x, y);
  30. }
  31. }
  32. }
      三 http://blog.csdn.net/xiaanming/article/details/17374599/

关于scrollview监听的一些方法的更多相关文章

  1. Android ScrollView监听滑动到顶部和底部的两种方式(你可能不知道的细节)

    Android ScrollView监听滑动到顶部和底部,虽然网上很多资料都有说,但是不全,而且有些细节没说清楚 使用场景: 1. 做一些复杂动画的时候,需要动态判断当前的ScrollView是否滚动 ...

  2. Android TextWatcher的使用方法(监听ExitText的方法)

    我做了一个查询单词的简单app, 当在EditText中输入单词的时候,点击lookup,则在TextView区域显示出该单词的意思,当EditText中没有任何字符时,显示"word de ...

  3. v-on可以监听多个方法吗?

    原文地址 v-on可以监听多个方法 <template> <div class="about"> <button @click="mycli ...

  4. ScrollView监听滑动到顶部和底部的方法

    不需要监听滑动位置,只需要重写ScrollView的onOverScrolled和stopNestedScroll方法就可以了 public class ReadScrollView extends ...

  5. Android: ScrollView监听滑动到顶端和底端

    在项目中需要监听ScrollView滑动到顶端和底端的时候以实现自己的ScrollView,那么怎样去监听呢?今天查看了一下ScrollView的源码,找到了一种方法.先看一下源码中的overScro ...

  6. android dialog 原来dialog对话框也有自己的按键监听事件 onKeyDown方法

    探讨在一个activity中按menu键时弹出自己定义的dialog(自定义菜单对话框)时,再按一次手机的menu键发现这个自定义的dialog菜单并没有关闭,原来是这个dialog内部也有onKey ...

  7. VueJs 监听 window.resize 方法

    Vuejs 本身就是一个 MVVM 的框架. 但是在监听 window 上的 事件 时,往往会显得 力不从心. 比如 这次是 window.resize 恩,我做之前也是百度了一下.看到大家伙都为这个 ...

  8. 阅读layim代码小记,监听事件实现方法

    (function (win) { //注册事件 var chat = function () { $('#open').on('click', function () { sendMessage() ...

  9. Android成长日记-Android监听事件的方法

    1. Button鼠标点击的监听事件 --setOnClickListener 2. CheckBox, ToggleButton , RadioGroup的改变事件 --setOnCheckedCh ...

随机推荐

  1. 多线程编程之Windows环境下创建新线程

    转自: http://www.cnblogs.com/lgxqf/archive/2009/02/10/1387480.html 在 Win32 API 中,创建线程的基本函数是 CreateThre ...

  2. Hibernate3回顾-5-简单介绍Hibernate session对数据的增删改查

    5. Hibernate对数据的增删改查 5.1Hibernate加载数据 两种:get().load() 一. Session.get(Class arg0, Serializable arg1)方 ...

  3. Erlang库 -- 有意思的库汇总

    抄自这里 首先,库存在的目的大致可分为:1.提供便利2.尽可能解决一些痛点 首先,我们先明确一下Erlang编程语言的一些痛点(伪痛点):1,单进程问题Erlang虚拟机属于抢占式调度,抢占式调度有很 ...

  4. SQL Server附加数据库文件出错

    场景: 新装一台数据库服务器,装好后,附加数据库时出错.附加前的数据库架构没有在新服务器上安装.新服务器上只有默认dbo架构. 解决: 以windows身份验证登录,附加正常. 错误码可能为5120. ...

  5. MongoDB的基本使用

    use library 使用use函数切换已有的数据库或创建新的数据库 show dbs 查看MongoDB中目前所有可用的数据库 show collections 查看当前数据库中的所有集合 在集合 ...

  6. SOA_环境安装系列5_Oracle ADF安装SOA Extensions(案例)

    2015-01-02 Created By BaoXinjian

  7. DBA_Oracle Table Partition表分区概念汇总(概念)

    2014-06-20 Created By BaoXinjian

  8. HDU 1671 Phone List (Trie·数组实现)

    链接:http://blog.csdn.net/acvay/article/details/47089657 题意  给你一组电话号码  判断其中是否有某个电话是另一个电话的前缀 字典树的基础应用   ...

  9. C# 中的事件含义介绍

    AutoSizeChanged 当 AutoSize 属性的值更改时发生.(从 ButtonBase 继承.)   BackColorChanged 当 BackColor 属性的值更改时发生.(从 ...

  10. 加密--win7下安装openssl

    http://www.cnblogs.com/ZhouL3777/archive/2012/10/21/2732890.html http://www.cnblogs.com/ZhouL3777/ar ...