文章详情

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

请输入下面的图形验证码

提交验证

短信预约提醒成功

怎么在Android应用中利用onTouchEvent实现一个滑动布局

2023-05-31 08:56

关注

本篇文章给大家分享的是有关怎么在Android应用中利用onTouchEvent实现一个滑动布局,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。

boolean onTouch(View v, MotionVent event)

触摸事件发送到视图时调用(v:视图,event:触摸事件)
返回true:事件被完全消耗(即,从down事件开始,触发move,up所有的事件)
返回fasle:事件未被完全消耗(即,只会消耗掉down事件)

boolean onTouchEvent(MotionEvent event)

触摸屏幕时调用
返回值,同上

须知

onTouch优先级比onTouchEvent高
2、如果button设置了onTouchListener监听,onTouch方法返回了true,就不会调用这个button的Click事件

运用onTouchEvent写一个能滑动的布局

需求:

刚进入界面外层布局,自动下滑一段距离,露出内层布局。
2.外层布局可以上下滑动,并且带有透明度渐变效果,改变内边距效果。

需求分析:

显然,外层布局要默认覆盖内层布局了,这个容易。自动下滑,要用到动画,ObjectAnimator
2.外层布局要实现上下滑动,那么需要自定义,对onTouchEvent重写(核心逻辑)
代码如下:

  public class MyViewGroup extends ViewGroup {   private MyViewGroupListener listener;//接口,监听滑动事件  private int vertical = 0;//布局距离顶端距离(默认0)   public MyViewGroup(Context context) {  super(context);  }   public MyViewGroup(Context context, AttributeSet attrs) {  super(context, attrs);  }   public MyViewGroup(Context context, AttributeSet attrs, int defStyleAttr) {  super(context, attrs, defStyleAttr);  }   @RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)  public MyViewGroup(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {  super(context, attrs, defStyleAttr, defStyleRes);  }    private int downY = 0;//按下时的点  private int slide = 0;//最终移动距离  @Override  public boolean onTouchEvent(MotionEvent event) {  switch (event.getAction()){   case MotionEvent.ACTION_DOWN:   downY = (int) event.getY();   break;   case MotionEvent.ACTION_MOVE:   slide = downY - (int)event.getY();   if(slide < 0){//下滑    vertical = listener.marginTop(Math.abs(slide));   }else if(slide > 0){//上滑    vertical = listener.marginTop(-slide);   }   break;   case MotionEvent.ACTION_UP:   if(vertical < 300){    //布局距离屏幕顶部小于300,就让布局充满整个屏幕    vertical = listener.marginTop(0);   }   break;  }  return true;  }     @Override  protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {  super.onMeasure(widthMeasureSpec, heightMeasureSpec);  for (int i = 0; i < getChildCount(); i++) {   View child = getChildAt(i);   //系统测量   measureChild(child, widthMeasureSpec, heightMeasureSpec);  }  }     @Override  protected void onLayout(boolean changed, int l, int t, int r, int b) {  int left = 0, top = 0, right = 0, bottom = 0;  for (int i = 0; i < getChildCount(); i++) {   View child = getChildAt(i);   right = left + child.getMeasuredWidth();   bottom = top + child.getMeasuredHeight();   child.layout(left, top, right, bottom);  }  }   public void setListener(MyViewGroupListener listener){  this.listener = listener;  }   interface MyViewGroupListener {    int marginTop(int slide);  } }
public class MainActivity extends AppCompatActivity implements MyViewGroup.MyViewGroupListener{     private MyViewGroup myViewGroup;    private ImageView iv1,iv2;    private RelativeLayout relativeLayout;    private ViewGroup.MarginLayoutParams params;    private float f;    private int p;   @Override  protected void onCreate(Bundle savedInstanceState) {  super.onCreate(savedInstanceState);  setContentView(R.layout.activity_main);  myViewGroup = (MyViewGroup) findViewById(R.id.my);  myViewGroup.setListener(this);  iv1 = (ImageView) findViewById(R.id.iv1);  iv2 = (ImageView) findViewById(R.id.iv2);  relativeLayout = (RelativeLayout) findViewById(R.id.relative);  params = (ViewGroup.MarginLayoutParams) myViewGroup.getLayoutParams();  //初始化动画(自动下滑一段儿距离),我这里写死了900  ObjectAnimator animator = ObjectAnimator.ofFloat(myViewGroup,"translationY", 900);  animator.setDuration(2000);  animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {   @Override   public void onAnimationUpdate(ValueAnimator animation) {   float y = (float)animation.getAnimatedValue();   f = y/800;   p = (int) y/3;   alpha(f);   padding(p);   }  });  animator.start(); // cloud = (ImageView) findViewById(R.id.cloud);  }      @Override  public int marginTop(int slide) {  params.topMargin += slide;  myViewGroup.setLayoutParams(params);  int vertical = (900 + params.topMargin);  if(slide == 0){   //为了隐藏两张圆图,所以把Relativelayout的高度一并减除。   params.topMargin -= (vertical+relativeLayout.getHeight());   myViewGroup.setLayoutParams(params);  }  float alpha = f + (float) params.topMargin/800;//自定义一个算法  alpha(alpha);  int padding = p + params.topMargin/3;//自定义一个算法  padding(padding);  return vertical;  }     public void alpha(float alpha) {  iv1.setAlpha(alpha);  iv2.setAlpha(alpha);  }     public void padding(int padding) {  relativeLayout.setPadding(padding, 0, padding, 0);  }
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout  xmlns:android="http://schemas.android.com/apk/res/android"  xmlns:app="http://schemas.android.com/apk/res-auto"  xmlns:tools="http://schemas.android.com/tools"  android:id="@+id/activity_main"  android:layout_width="match_parent"  android:layout_height="match_parent"  tools:context="com.wgl.viewgroup1.MainActivity">  <ImageView  android:id="@+id/iv"  android:layout_width="match_parent"  android:layout_height="match_parent"  android:src="@mipmap/pic"  android:scaleType="fitXY"/>  <!--<ImageView-->   <!--android:id="@+id/cloud"-->   <!--android:layout_width="wrap_content"-->   <!--android:layout_height="wrap_content"-->   <!--android:layout_centerHorizontal="true"-->   <!--android:alpha="0.8"-->   <!--android:src="@mipmap/cloud3"-->   <!--android:clickable="true"/>-->   <com.wgl.viewgroup1.MyViewGroup  android:id="@+id/my"  android:layout_width="match_parent"  android:layout_height="match_parent"  android:alpha="0.8"  android:layout_alignParentTop="true">  <LinearLayout   android:layout_width="match_parent"   android:layout_height="match_parent"   android:orientation="vertical">   <RelativeLayout   android:id="@+id/relative"   android:layout_width="match_parent"   android:layout_height="wrap_content"   android:orientation="horizontal">   <com.wgl.viewgroup1.CircleImageView    android:id="@+id/iv1"    android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:src="@mipmap/iv1"    app:civ_border_width="2dp"    app:civ_border_color="@color/colorAccent"    android:layout_alignParentLeft="true"/>    <com.wgl.viewgroup1.CircleImageView    android:id="@+id/iv2"    android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:src="@mipmap/iv2"    app:civ_border_width="2dp"    app:civ_border_color="@color/colorAccent"    android:layout_alignParentRight="true"/>   </RelativeLayout>   <LinearLayout   android:layout_width="match_parent"   android:layout_height="match_parent"   android:alpha="0.8"   android:background="@color/colorPrimary">    </LinearLayout>  </LinearLayout>   </com.wgl.viewgroup1.MyViewGroup> </RelativeLayout>

以上就是怎么在Android应用中利用onTouchEvent实现一个滑动布局,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

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

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

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯