亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

Android中實現監(jiān)聽ScrollView滑動事件

 更新時間:2015年05月06日 08:50:16   投稿:junjie  
這篇文章主要介紹了Android中實現監(jiān)聽ScrollView滑動事件,本文用重寫ScrollView類的方法實現了一些擴展功能,需要的朋友可以參考下

時候我們需要監(jiān)聽ScroView的滑動情況,比如滑動了多少距離,是否滑到布局的頂部或者底部??上У氖荢DK并沒有相應的方法,不過倒是提供了一個

復制代碼 代碼如下:

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

方法,顯然這個方法是不能被外界調用的,因此就需要把它暴露出去,方便使用。解決方式就是寫一個接口,
復制代碼 代碼如下:

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

 然后重寫ScrollView類,給它提供上面寫的回調接口。

復制代碼 代碼如下:

package com.example.demo1; 
 
import android.content.Context; 
import android.util.AttributeSet; 
import android.widget.ScrollView; 
 
public class ObservableScrollView extends ScrollView { 
 
    private ScrollViewListener scrollViewListener = null; 
 
    public ObservableScrollView(Context context) { 
        super(context); 
    } 
 
    public ObservableScrollView(Context context, AttributeSet attrs, 
            int defStyle) { 
        super(context, attrs, defStyle); 
    } 
 
    public ObservableScrollView(Context context, AttributeSet attrs) { 
        super(context, attrs); 
    } 
 
    public void setScrollViewListener(ScrollViewListener scrollViewListener) { 
        this.scrollViewListener = scrollViewListener; 
    } 
 
    @Override 
    protected void onScrollChanged(int x, int y, int oldx, int oldy) { 
        super.onScrollChanged(x, y, oldx, oldy); 
        if (scrollViewListener != null) { 
            scrollViewListener.onScrollChanged(this, x, y, oldx, oldy); 
        } 
    } 
 

注意在xml布局的時候,不要寫錯了包。

復制代碼 代碼如下:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="horizontal" 
    android:paddingBottom="@dimen/activity_vertical_margin" 
    android:paddingLeft="@dimen/activity_horizontal_margin" 
    android:paddingRight="@dimen/activity_horizontal_margin" 
    android:paddingTop="@dimen/activity_vertical_margin" 
    tools:context=".MainActivity" > 
 
    <com.example.demo1.ObservableScrollView 
        android:id="@+id/view1" 
        android:layout_width="wrap_content" 
        android:layout_height="match_parent" > 
 
        <LinearLayout 
            android:layout_width="wrap_content" 
            android:layout_height="match_parent" 
            android:orientation="vertical" > 
 
            <TextView 
                android:layout_width="100dp" 
                android:layout_height="100dp" 
                android:text="試試1" /> 
 
            <TextView 
                android:layout_width="100dp" 
                android:layout_height="100dp" 
                android:text="試試2" /> 
 
            <TextView 
                android:layout_width="100dp" 
                android:layout_height="100dp" 
                android:text="試試3" /> 
 
            <TextView 
                android:layout_width="100dp" 
                android:layout_height="100dp" 
                android:text="試試4" /> 
 
            <TextView 
                android:layout_width="100dp" 
                android:layout_height="100dp" 
                android:text="試試5" /> 
 
            <TextView 
                android:layout_width="100dp" 
                android:layout_height="100dp" 
                android:text="試試6" /> 
        </LinearLayout> 
    </com.example.demo1.ObservableScrollView> 
 
    <com.example.demo1.ObservableScrollView 
        android:id="@+id/view2" 
        android:layout_width="wrap_content" 
        android:layout_height="match_parent" > 
 
        <LinearLayout 
            android:layout_width="wrap_content" 
            android:layout_height="match_parent" 
            android:orientation="vertical" > 
 
            <TextView 
                android:layout_width="100dp" 
                android:layout_height="100dp" 
                android:text="試試1" /> 
 
            <TextView 
                android:layout_width="100dp" 
                android:layout_height="100dp" 
                android:text="試試2" /> 
 
            <TextView 
                android:layout_width="100dp" 
                android:layout_height="100dp" 
                android:text="試試3" /> 
 
            <TextView 
                android:layout_width="100dp" 
                android:layout_height="100dp" 
                android:text="試試4" /> 
 
            <TextView 
                android:layout_width="100dp" 
                android:layout_height="100dp" 
                android:text="試試5" /> 
 
            <TextView 
                android:layout_width="100dp" 
                android:layout_height="100dp" 
                android:text="試試6" /> 
        </LinearLayout> 
    </com.example.demo1.ObservableScrollView> 
 
</LinearLayout> 
 

  最后activity代碼如下,
復制代碼 代碼如下:

package com.example.demo1; 
 
import android.os.Bundle; 
import android.app.Activity; 
import android.view.Menu; 
 
public class MainActivity extends Activity implements ScrollViewListener { 
 
    private ObservableScrollView scrollView1 = null; 
    private ObservableScrollView scrollView2 = null; 
 
    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
        super.onCreate(savedInstanceState); 
        setContentView(R.layout.activity_main); 
 
        scrollView1 = (ObservableScrollView) findViewById(R.id.view1); 
        scrollView1.setScrollViewListener(this); 
        scrollView2 = (ObservableScrollView) findViewById(R.id.view2); 
        scrollView2.setScrollViewListener(this); 
 
    } 
 
    @Override 
    public boolean onCreateOptionsMenu(Menu menu) { 
        // Inflate the menu; this adds items to the action bar if it is present. 
        getMenuInflater().inflate(R.menu.main, menu); 
        return true; 
    } 
 
    @Override 
    public void onScrollChanged(ObservableScrollView scrollView, int x, int y, 
            int oldx, int oldy) { 
        if (scrollView == scrollView1) { 
            scrollView2.scrollTo(x, y); 
        } else if (scrollView == scrollView2) { 
            scrollView1.scrollTo(x, y); 
        } 
    } 
 


相關文章

  • Android中ViewPager1和ViewPager2的使用教程

    Android中ViewPager1和ViewPager2的使用教程

    這篇文章主要介紹了Android中ViewPager1和ViewPager2的使用,效果圖是結合BottomNavigationView+ViewPager一起使用的,具體實例代碼跟隨小編一起看看吧
    2021-10-10
  • Android控件Chronometer定時器的實現方法

    Android控件Chronometer定時器的實現方法

    這篇文章主要為大家詳細介紹了Android控件Chronometer定時器的實現方法,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2016-11-11
  • Android 實現的下拉刷新效果

    Android 實現的下拉刷新效果

    最近在使用趕集網的時候,發(fā)現他的下拉刷新十分有趣,是一頭飛行的小毛驢,作為開發(fā)者自然心里癢癢打算把它做出來順便鍛煉下自己的動手能力。本文講解如何仿照實現該效果
    2021-06-06
  • Android 后臺調度任務與省電詳解

    Android 后臺調度任務與省電詳解

    本文主要介紹 Android 后臺調度任務與省電,這里整理了詳細的知識資料供大家學習參考,希望能幫助有需要的小伙伴
    2016-08-08
  • Android開發(fā)時盡管已root但是ddms還是沒有data路徑怎么辦

    Android開發(fā)時盡管已root但是ddms還是沒有data路徑怎么辦

    這篇文章主要介紹了Android開發(fā)時盡管已root但是ddms還是沒有data路徑怎么辦的相關資料,需要的朋友可以參考下
    2015-12-12
  • android控件Banner實現簡單輪播圖效果

    android控件Banner實現簡單輪播圖效果

    這篇文章主要為大家詳細介紹了android控件Banner實現簡單輪播圖效果,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2021-05-05
  • Android數據緩存框架內置ORM功能使用教程

    Android數據緩存框架內置ORM功能使用教程

    這篇文章主要為大家介紹了Android數據緩存框架內置ORM功能使用教程,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪
    2022-09-09
  • android 中去掉窗口全屏顯示的簡單方法

    android 中去掉窗口全屏顯示的簡單方法

    android 中去掉窗口全屏顯示的簡單方法,需要的朋友可以參考一下
    2013-06-06
  • Android?AccessibilityService?事件分發(fā)原理分析總結

    Android?AccessibilityService?事件分發(fā)原理分析總結

    這篇文章主要介紹了Android?AccessibilityService?事件分發(fā)原理分析總結,AccessibilityService有很多用來接收外部調用事件變化的方法,這些方法封裝在內部接口Callbacks中,文章圍繞AccessibilityService相關資料展開詳情,需要的朋友可以參考一下
    2022-06-06
  • Android實現實時搜索框功能

    Android實現實時搜索框功能

    這篇文章主要為大家詳細介紹了Android實現實時搜索框功能,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-09-09

最新評論