在Android中,可以通過使用OnLongClickListener
接口來監聽長按事件。具體步驟如下:
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Long Click Me"/>
Button button = findViewById(R.id.button);
button.setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
// 處理長按事件
return true; // 返回true表示已處理事件,不會觸發普通點擊事件
}
});
在onLongClick
方法中編寫長按事件的處理邏輯,返回true
表示已處理事件,不會觸發普通點擊事件,返回false
則會繼續觸發普通點擊事件。