Wednesday, September 7, 2011

[android-developers] Re: How to use Tap Gesture???

See nrmally when we have a button in a page in the onClick(View  v ){
if(btn1==v)
{

startActivity(new
Intent(FirstScreenActivity.this,SecondScreenActivity.class));

}

}
 
If that is the way you are doing it then I would (as others have) recommend reading up on how to listen and respond to click events. I see absolutely no reason to use an if/else statement when the listener is tied directly to the button.

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

No comments:

Post a Comment