利用手势弹出Activity——唤出菜单

要做的其实就是实现OnTouchListener(触摸监听)和OnGestureListener(手势监听)接口

OnGestureListener有许多方法需要实现,不过我们暂时只要到onFling(), 其他空着就可以了

 @Override
    public boolean onFling(MotionEvent motionEvent1, MotionEvent motionEvent2, float v, float v2) {
        // motionEvent11 触摸的起始位置,motionEvent12 触摸的结束位置
        // v X轴每一秒移动的像素速度 v 是Y
        if (motionEvent2.getY() - motionEvent1.getY()>50) {
            //Y轴(纵坐标)移动50(大概是像素吧)后触发
            Intent intent = new Intent(MainActivity.this, MainMenuActivity.class);
            startActivity(intent);
        }
        return false;
    }

然后实现OnTouchListener的方法

    @Override
    public boolean onTouch(View view, MotionEvent motionEvent) {
        //记得定义一个全局变量
        return detector.onTouchEvent(motionEvent);
    }

在onCreate()中

 @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        FrameLayout layout = (FrameLayout) findViewById(R.id.layout_main);
        button = (Button) findViewById(R.id.open_one_menu);
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                actionDialog();
            }
        });
        //new GestureDetector(this)的构造方法已经过时了 不要再用了
        detector = new GestureDetector(this, this);
        layout.setOnTouchListener(this);
        layout.setLongClickable(true);
    }

优化:将菜单显示在手势滑动处

在启动Activity时带上滑动开始的坐标

Intent intent = new Intent(MainActivity.this, MainMenuActivity.class);
            intent.putExtra("coord_x", (int)motionEvent1.getX());
            intent.putExtra("coord_y", (int)motionEvent1.getY());
            startActivity(intent);


在目标Activity的OnCreate()中调用调整位置的方法

private WindowManager.LayoutParams initCoord(){
        WindowManager.LayoutParams params = getWindow().getAttributes();
        Intent intent = getIntent();
        params.x = intent.getIntExtra("coord_x", 0) - MainActivity.width / 2;
        params.y = intent.getIntExtra("coord_y", 0) - MainActivity.height / 2;
        Log.e("tag", "x,y = " + params.x + "," + params.y);
        return params;
    }
由于LayoutParams的坐标是以屏幕中心为原点,而MotionEvent则是左上角 所以先获取了屏幕分辨率


DisplayMetrics dm = new DisplayMetrics();
        getWindowManager().getDefaultDisplay().getMetrics(dm);
        width = dm.widthPixels;
        height = dm.heightPixels;



完整Activity代码

package com.sljjyy.sao.launcher;

import android.content.Intent;
import android.os.Bundle;
import android.app.Activity;
import android.util.DisplayMetrics;
import android.view.GestureDetector;
import android.view.GestureDetector.OnGestureListener;
import android.view.Menu;
import android.view.MenuItem;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnTouchListener;
import android.widget.Button;
import android.widget.FrameLayout;

import com.sljjyy.sao.launcher.view.MainMenuActivity;


public class MainActivity extends Activity implements OnTouchListener, OnGestureListener {
    private Button button = null;
    GestureDetector detector;
    public static int width = 0;
    public static int height = 0;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        DisplayMetrics dm = new DisplayMetrics();
        getWindowManager().getDefaultDisplay().getMetrics(dm);
        width = dm.widthPixels;
        height = dm.heightPixels;

        setContentView(R.layout.activity_main);
        FrameLayout layout = (FrameLayout) findViewById(R.id.layout_main);
        button = (Button) findViewById(R.id.open_one_menu);
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                actionDialog();
            }
        });
        //new GestureDetector(this)的构造方法已经过时了 不要再用了
        detector = new GestureDetector(this, this);
        layout.setOnTouchListener(this);
        layout.setLongClickable(true);
    }

    protected void actionDialog() {
        Intent intent = new Intent(MainActivity.this, MainMenuActivity.class);
        startActivity(intent);

    /*    ArrayList<MainMenu> data = initData();
        Dialog alertDialog;
        LayoutInflater inflater = (LayoutInflater) this.getSystemService(LAYOUT_INFLATER_SERVICE);
        View layout = inflater.inflate(R.layout.one_menu_list, (ViewGroup)findViewById(R.id.layout_myview));
        ListView oneMenuList = (ListView) layout.findViewById(R.id.layout_one_menu);
        OneMenuAdapter oneMenuAdapter = new OneMenuAdapter(this,data);
        oneMenuList.setAdapter(oneMenuAdapter);
        alertDialog = new Dialog(this, R.style.one_menu_dialog);
        alertDialog.setContentView(layout);
        alertDialog.show();*/
    }
    @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;
    }

    public boolean onOptionsItemSelected(MenuItem item){
        switch (item.getItemId()) {
            case R.id.action_settings:
                onSetWallpaper();
                return true;
        }
        return false;
    }

    public void onSetWallpaper() {
        //生成一个设置壁纸的请求
        final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
        Intent chooser = Intent.createChooser(pickWallpaper,"chooser_wallpaper");
        //发送设置壁纸的请求
        startActivity(chooser);
    }

    @Override
    public boolean onTouch(View view, MotionEvent motionEvent) {
        //记得定义一个全局变量
        return detector.onTouchEvent(motionEvent);
    }

    @Override
    public boolean onFling(MotionEvent motionEvent1, MotionEvent motionEvent2, float v, float v2) {
        // motionEvent11 触摸的起始位置,motionEvent12 触摸的结束位置
        // v X轴每一秒移动的像素速度 v 是Y
        if (motionEvent2.getY() - motionEvent1.getY()>50) {
            //Y轴(纵坐标)移动50(大概是像素吧)后触发
            Intent intent = new Intent(MainActivity.this, MainMenuActivity.class);
            intent.putExtra("coord_x", (int)motionEvent1.getX());
            intent.putExtra("coord_y", (int)motionEvent1.getY());
            startActivity(intent);
        }
        return false;
    }

    @Override
    public boolean onDown(MotionEvent motionEvent) {
        return false;
    }

    @Override
    public void onShowPress(MotionEvent motionEvent) {

    }

    @Override
    public boolean onSingleTapUp(MotionEvent motionEvent) {
        return false;
    }

    @Override
    public boolean onScroll(MotionEvent motionEvent, MotionEvent motionEvent2, float v, float v2) {
        return false;
    }

    @Override
    public void onLongPress(MotionEvent motionEvent) {

    }
}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值