Re: [android-developers] [Beginner] - problem with onClick()

2010-06-07 Thread Nicholas Ault
This is described in the Dev Guide ( http://developer.android.com/guide/topics/ui/ui-events.html ) // Create an anonymous implementation of OnClickListener private OnClickListener mCorkyListener = new OnClickListener() { public void onClick(View v) { // do something when the button is

[android-developers] [Beginner] - problem with onClick()

2010-06-01 Thread lamia
Good morning, I'm a beginner developer on Android. I created an UI with two EditText and a button. I want to create an application using twitter (API JTwitter), the the first stage is to connect to twitter. On myApp.java I use this: public class myApp extends Activity implements OnClickListener