返回顶部
首页 > 资讯 > 移动开发 >Android中使用ScrollView实现滑动到底部显示加载更多
  • 673
分享到

Android中使用ScrollView实现滑动到底部显示加载更多

scrollviewAndroid 2022-06-06 01:06:40 673人浏览 薄情痞子
摘要

这是效果 主要是onTouchListener监听事件,监视什么时候滑到底部 同时要理解getMeasuredHeight和getHeight的区别 getMeasuredH

这是效果

主要是onTouchListener监听事件,监视什么时候滑到底部

同时要理解getMeasuredHeight和getHeight的区别

getMeasuredHeight:全部的长度 包括隐藏的

getHeight:在布局中展示出来的长度

布局文件:


<FrameLayout xmlns:Android="Http://schemas.android.com/apk/res/android" 
 android:layout_width="fill_parent" 
 android:layout_height="fill_parent"> 
 <ScrollView 
 android:id="@+id/scrollview" 
 android:layout_width="fill_parent" 
 android:layout_height="wrap_content" 
 android:scrollbars="none" > 
 <TextView 
 android:id="@+id/text" 
 android:layout_width="fill_parent" 
 android:layout_height="wrap_content" /> 
 </ScrollView> 
 <Button 
 android:id="@+id/next" 
android:layout_gravity="bottom|center_horizontal" 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:visibility="invisible" 
 android:text="点击加载更多" /> 
</FrameLayout> 

MainActivity


package com.example.scrollview; 
import android.opengl.Visibility; 
import android.os.Bundle; 
import android.app.Activity; 
import android.support.v4.app.NotificationCompat.Action; 
import android.util.Log; 
import android.view.Menu; 
import android.view.MotionEvent; 
import android.view.View; 
import android.view.View.OnClickListener; 
import android.view.View.OnTouchListener; 
import android.view.Window; 
import android.widget.Button; 
import android.widget.ScrollView; 
import android.widget.TextView; 
import android.widget.Toast; 
public class MainActivity extends Activity { 
 private ScrollView scroll; 
 private TextView text; 
 private Button button; 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
 super.onCreate(savedInstanceState); 
 requestWindowFeature(Window.FEATURE_NO_TITLE); 
 setContentView(R.layout.activity_main); 
 scroll=(ScrollView) findViewById(R.id.scrollview); 
 text=(TextView) findViewById(R.id.text); 
 button=(Button) findViewById(R.id.next); 
 text.setText(getResources().getString(R.string.lyric)); 
 button.setOnClickListener(new OnClickListener() { 
 @Override 
 public void onClick(View v) { 
 // TODO Auto-generated method stub 
 text.append(getResources().getString(R.string.lyric)); 
 button.setVisibility(View.INVISIBLE); 
 } 
 }); 
 scroll.setOnTouchListener(new OnTouchListener() { 
 @Override 
 public boolean onTouch(View v, MotionEvent event) { 
 // TODO Auto-generated method stub 
 switch(event.getAction()){ 
  case MotionEvent.ACTION_MOVE:{ 
  break; 
  } 
  case MotionEvent.ACTION_DOWN:{ 
  break; 
  } 
  case MotionEvent.ACTION_UP:{ 
  //当文本的measureheight 等于scroll滚动的长度+scroll的height 
  if(scroll.getChildAt(0).getMeasuredHeight()<=scroll.getScrollY()+scroll.getHeight()){ 
  button.setVisibility(View.VISIBLE); 
  }else{ 
  } 
  break; 
  } 
 } 
 return false; 
 } 
 }); 
 } 
} 
您可能感兴趣的文章:Android中实现监听ScrollView滑动事件Android中ScrollView实现滑动距离监听器的方法Android ScrollView滑动实现仿QQ空间标题栏渐变android scrollview 滑动到顶端或者指定位置的实现方法Android中Toolbar随着ScrollView滑动透明度渐变效果实现Android编程开发ScrollView中ViewPager无法正常滑动问题解决方法Android HorizontalScrollView左右滑动效果Android开发控制ScrollView滑动速度的方法Android开发之ScrollView的滑动监听Android自定义控件ScrollView实现上下滑动功能


--结束END--

本文标题: Android中使用ScrollView实现滑动到底部显示加载更多

本文链接: https://lsjlt.com/news/21866.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作