如何检测Android上的触摸输入

时间:2010-06-29 16:23:41

标签: android events input touch

现在我要做的就是检测屏幕被按下的时间,然后显示一条日志消息以确认它发生了。到目前为止我的代码是从CameraPreview示例代码修改的(它最终将拍照)所以大部分代码都在扩展SurfaceView的类中。 SDK中示例代码的API为7.

5 个答案:

答案 0 :(得分:25)

尝试使用以下代码检测触摸事件。

mView.setOnTouchListener(new OnTouchListener() {
    @Override
    public boolean onTouch(View v, MotionEvent event) {
        //show dialog here
        return false;
    }
});

要显示对话框,请使用活动方法showDialog(int)。你必须实现onCreateDialog()。有关详细信息,请参阅文档。

答案 1 :(得分:14)

这是一个关于如何检测简单触摸事件,获取坐标并显示祝酒的简单示例。这个例子中的事件是Action Down,Move和Action up。

import android.app.Activity;
import android.os.Bundle;
import android.view.MotionEvent;
import android.widget.Toast;

public class MainActivity extends Activity {

    private boolean isTouch = false;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {

        int X = (int) event.getX();
        int Y = (int) event.getY();
        int eventaction = event.getAction();

        switch (eventaction) {
            case MotionEvent.ACTION_DOWN:
                Toast.makeText(this, "ACTION_DOWN AT COORDS "+"X: "+X+" Y: "+Y, Toast.LENGTH_SHORT).show();
                isTouch = true;
                break;

            case MotionEvent.ACTION_MOVE:
                Toast.makeText(this, "MOVE "+"X: "+X+" Y: "+Y, Toast.LENGTH_SHORT).show();
                break;

            case MotionEvent.ACTION_UP:
                Toast.makeText(this, "ACTION_UP "+"X: "+X+" Y: "+Y, Toast.LENGTH_SHORT).show();
                break;
        }
        return true;
    }
}

答案 2 :(得分:4)

我是这样做的:

public class ActivityWhatever extends Activity implements OnTouchListener
{

    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.yourlayout);

        //the whole screen becomes sensitive to touch
        mLinearLayoutMain = (LinearLayout) findViewById(R.id.layout_main);
        mLinearLayoutMain.setOnTouchListener(this);
    }

    public boolean onTouch(View v, MotionEvent event)
    {
        // TODO put code in here

        return false;//false indicates the event is not consumed
    }
}

在视图的xml中,指定:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:id="@+id/layout_main">

    <!-- other widgets go here-->

</LinearLayout>

答案 3 :(得分:1)

我已经尝试了很多,最后找到了一种解决方案,可以在2天后检测屏幕中的触摸。

<强>科特林:

如果您有底部导航栏并且想要隐藏...请尝试此操作!

  

Activity.dispatchTouchEvent(MotionEvent) - 这允许您的Activity   在将所有触摸事件发送到之前拦截它们   窗口。

  override fun dispatchTouchEvent(event: MotionEvent): Boolean {

   if (event.getAction() === MotionEvent.ACTION_DOWN) {
       if (event.getAction() === MotionEvent.ACTION_DOWN) {




       }
   } else if (event.getAction() === MotionEvent.ACTION_MOVE) {
       tabLayout.visibility = View.GONE
       tv_chat.visibility = View.GONE



   } else if (event.getAction() === MotionEvent.ACTION_UP) {

       tabLayout.visibility = View.VISIBLE
       tv_chat.visibility = View.VISIBLE

   }
    return super.dispatchTouchEvent(event)
}

答案 4 :(得分:0)

//在手指触摸视图上可见。手指不见了

    hintView.setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {
          if(event.getAction()==MotionEvent.ACTION_MOVE){
                hintText.setVisibility(View.VISIBLE);
            }else if(event.getAction()==MotionEvent.ACTION_UP){
              hintText.setVisibility(View.GONE);

            }

            return true;
        }
    });