我正试图让一个触摸听众开火,但我不能让它发挥作用。有谁看到我做错了什么?谢谢!
public class FindEventsActivity extends Activity implements LocationListener, OnTouchListener {
//lots of other code up here
private void getFromCityState() {
LayoutInflater inflater = LayoutInflater.from(this);
View view = inflater.inflate(R.layout.city_state_entry, null);
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setView(view);
setContentView(R.layout.city_state_entry);
city = (EditText) findViewById(R.id.city);
state = (Spinner) findViewById(R.id.state_spinner);
Button submitButton = (Button) findViewById(R.id.submitButton);
System.err.println("About to create onClickListener");
submitButton.setOnTouchListener(this);
return null;
}
public boolean onTouch(View view, MotionEvent event) {
System.err.println("inside onTouch");
}
}
我的第一张println出现了,但我的第二张println却没出现。它必须是我设置onTouchListener的上下文,但我不知道如何更改它。
答案 0 :(得分:0)
使用setOnClickListener
代替setOnTouchListener
来处理按钮上的点击事件。按下按钮时,甚至可能无法触发onTouch
。
答案 1 :(得分:0)
您错过了覆盖onTouch方法,并且不要忘记返回true。请参阅以下代码:
@Override
public boolean onTouch(View view, MotionEvent event) {
Log.d("MY_LOG", "inside onTouch");
return true;
}