zoukankan      html  css  js  c++  java
  • Android_左右滑动切换背景

    最近想做一个左右滑动切换背景图片的应用,特地将自己的研究分享一下:

    这个需要继承2个监听接口 OnGestureListener,  OnTouchListener

    关于这2个接口大家可以在网上查一下

    同事需要设置2个属性 bgLayout.setOnTouchListener(this);

                 bgLayout.setLongClickable(true);

    并且在这个函数中有如下这几句话

    public boolean onTouch(View v, MotionEvent event) {

    // TODO Auto-generated method stub

    return this.mGesture.onTouchEvent(event);

    }

    附送代码:

    public class SwitcherActivity extends Activity implements OnGestureListener,
    		OnTouchListener {
    	/** Called when the activity is first created. */
    	LinearLayout bgLayout = null;
    	private GestureDetector mGesture = null;
    	private int flag = 3;
    
    	@Override
    	public void onCreate(Bundle savedInstanceState) {
    		super.onCreate(savedInstanceState);
    		setContentView(R.layout.main);
    
    		mGesture = new GestureDetector(this);
    
    		bgLayout = (LinearLayout) findViewById(R.id.bg);
    		bgLayout.setBackgroundResource(R.drawable.bg3);
    		bgLayout.setOnTouchListener(this);
    		bgLayout.setLongClickable(true);
    	}
    
    	public boolean onDown(MotionEvent e) {
    		// TODO Auto-generated method stub
    		return false;
    	}
    
    	public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,
    			float velocityY) {
    		// 处理左右滑动
    		if (e1.getX() - e2.getX() > 100) { // 向左滑动
    			if (flag == 3) {
    				bgLayout.setBackgroundResource(R.drawable.bg4);
    				flag = 4;
    				return true;
    			}
    			if (flag == 4) {
    				bgLayout.setBackgroundResource(R.drawable.bg5);
    				flag = 5;
    				return true;
    			}
    			if (flag == 1) {
    				bgLayout.setBackgroundResource(R.drawable.bg2);
    				flag = 2;
    				return true;
    			}
    			if (flag == 2) {
    				bgLayout.setBackgroundResource(R.drawable.bg3);
    				flag = 3;
    				return true;
    			}
    		} else if (e1.getX() - e2.getX() < -100) { // 向右滑动
    			if (flag == 3) {
    				bgLayout.setBackgroundResource(R.drawable.bg2);
    				flag = 2;
    				return true;
    			}
    			if (flag == 2) {
    				bgLayout.setBackgroundResource(R.drawable.bg1);
    				flag = 1;
    				return true;
    			}
    			if (flag == 5) {
    				bgLayout.setBackgroundResource(R.drawable.bg4);
    				flag = 4;
    				return true;
    			}
    			if (flag == 4) {
    				bgLayout.setBackgroundResource(R.drawable.bg3);
    				flag = 3;
    				return true;
    			}
    		}
    		return false;
    	}
    
    	public void onLongPress(MotionEvent e) {
    		// TODO Auto-generated method stub
    
    	}
    
    	public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX,
    			float distanceY) {
    		// TODO Auto-generated method stub
    		return false;
    	}
    
    	public void onShowPress(MotionEvent e) {
    		// TODO Auto-generated method stub
    
    	}
    
    	public boolean onSingleTapUp(MotionEvent e) {
    		// TODO Auto-generated method stub
    		return false;
    	}
    
    	public boolean onTouch(View v, MotionEvent event) {
    		// TODO Auto-generated method stub
    		return this.mGesture.onTouchEvent(event);
    	}
    }


  • 相关阅读:
    direct path write 等待事件导致数据库hang
    Sql Server数据库视图的创建、修改
    MVC视图中Html.DropDownList()辅助方法的使用
    Ubuntu16.04下安装.NET Core
    Ubuntu16.04下部署golang开发环境
    win7环境下安装运行gotour【转载整理】
    一.Windows I/O模型之选择(select)模型
    Windos下的6种IO模型简要介绍
    编码介绍(ANSI、GBK、GB2312、UTF-8、GB18030和 UNICODE)
    串口通信知识点详解
  • 原文地址:https://www.cnblogs.com/wuyida/p/6300626.html
Copyright © 2011-2022 走看看