>
> 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.
Also you can make the ENTIRE view clickable:
http://developer.android.com/reference/android/view/View.OnClickListener.html
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en