android app没有注册onTouch

时间:2014-01-05 20:13:20

标签: android android-layout ontouchlistener android-event

这是我的布局文件

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <FrameLayout
        android:id="@+id/container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:padding="10dp" />

    <!-- will add other views later -->

</RelativeLayout>

这是我的自定义视图

import android.view.MotionEvent;
import android.view.View;
import android.widget.Toast;

public class MyView extends View implements View.OnTouchListener {

    ...

    @Override
    protected void onDraw(Canvas canvas) {
        ….//draw some shapes
    }

    @Override
    public boolean onTouch(View v, MotionEvent event) {
        if (event.getAction() == MotionEvent.ACTION_DOWN) {
            float xTouch = event.getX();
            float yTouch = event.getY();

            String str = "(" + xTouch + "," + yTouch + ")";
            System.out.println(str);
            Toast.makeText(mContext, str, Toast.LENGTH_SHORT).show();
        }
        return true;
    }
}

这是主要活动

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        View myView = new MyView(this, data);
        FrameLayout container = (FrameLayout) findViewById(R.id.container);
        container.addView(myView);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

}

问题

该应用未注册自定义视图的触摸事件。该视图显示onDraw的所有内容,但是当我单击时,onTouch未注册。我尝试在onTouch的if处设置一个断点,但它永远不会到达。

2 个答案:

答案 0 :(得分:1)

可能是你没有在构造函数中将onTouchListener注册到视图,我不是很确定,但是here onTouchEvent()是一个像onDraw一样覆盖视图的方法,也许这会更适合你

@Override
public boolean onTouchEvent (MotionEvent event){

return true;

}

答案 1 :(得分:1)

我认为你需要调用setOnTouchListener()来注册触摸事件的回调。