我听说过我们可以通过在Android中暂存一下来创建Button的点击事件。
我想在我的应用程序中使用该功能。
有人可以告诉我该怎么做吗?
谢谢, 大卫
答案 0 :(得分:5)
查看View.OnLongClickListener
。
public class MyActivity extends Activity {
protected void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.content_layout_id);
final Button button = (Button) findViewById(R.id.button_id);
button.setOnLongClickListener(new View.OnLongClickListener() {
public boolean onLongClick(View v) {
// Perform action on click
return true;
}
});
}
}