My current code looks like this:
        button1.setOnClickListener(new OnClickListener() {
            public void onClick(View v) {
                //blah
            }
        });
However, I want there to be delay of 1 second after I click on the page and before the onClick method is executed. How can I do this?