为什么我不能在程序中使用setOnClickListener和setOnTouchListener? OnTouchListener效果很好,但是我没有运行新的活动? 我做错了什么?
for (final ShopCategory category : gallery.getShopCategories()) {
final Button button = new Button(this);
// ...等
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
runNewActivity(gallery.getShops(), category);
}
});
button.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN ) {
button.setTextColor(Color.parseColor("#333333"));
button.setBackgroundColor(Color.parseColor("#ffcc33"));
return true;
}
else if (event.getAction() == MotionEvent.ACTION_UP ) {
button.setTextColor(Color.WHITE);
button.setBackgroundColor(Color.parseColor("#333333"));
}
return false;
}
});
categoriesButtonsLL.addView(button);
答案 0 :(得分:2)
使用drawable选择器更改按钮的显示状态而不是侦听触摸事件,可以做得更好。 (在res / drawable中创建一个选择器xml文件,例如" button_bg.xml"):
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true"
android:drawable="@drawable/button_pressed" /> <!-- pressed -->
<item android:state_focused="true"
android:drawable="@drawable/button_focused" /> <!-- focused -->
<item android:drawable="@drawable/button_normal" /> <!-- default -->
</selector>
现在编辑你的代码:
for (final ShopCategory category : gallery.getShopCategories()) {
final Button button = new Button(this);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
runNewActivity(gallery.getShops(), category);
}
});
button.setBackgroundResource(R.drawable.button_bg);
categoriesButtonsLL.addView(button);
}
答案 1 :(得分:1)
在这里快速猜测。但是尝试在onTouch中返回false。在ActionDown中返回true表示您处理了该事件,无需进一步处理。因此,如果处理了ActionDown,onClick永远不会发生。