[android-developers] Re: get the text in edit text on button click

2012-08-28 Thread karuna vikas
Hi vinay , Sorry ... I have replied for the 1st Question.. On Saturday, June 2, 2012 11:36:47 PM UTC+5:30, Raghu wrote: hi, how can i get the text entered by the user in the Edit Text on button click, kindly do help me on this -- You received this message because you are subscribed

[android-developers] Re: get the text in edit text on button click

2012-08-27 Thread karuna vikas
activity implements OnClickListener EditText text; String editText; public void OnCreate() { text = (EditText) findViewById(R.id.EditText1); } inside the Button method{ editText = text.getText().toString() } On Saturday, June 2, 2012 11:36:47 PM UTC+5:30, Raghu wrote: hi, how

Re: [android-developers] Re: get the text in edit text on button click

2012-08-27 Thread vinay kumar
Hi vikas, I don't see any issue in your code, may I know what problem you are facing with? On Mon, Aug 27, 2012 at 11:55 AM, karuna vikas kvk2551...@gmail.com wrote: activity implements OnClickListener EditText text; String editText; public void OnCreate() { text = (EditText)

Re: [android-developers] Re: get the text in edit text on button click

2012-08-27 Thread Krishna Mahadik
Check if your EditText id is correct. Code is correct. On Mon, Aug 27, 2012 at 12:02 PM, vinay kumar vk872...@gmail.com wrote: Hi vikas, I don't see any issue in your code, may I know what problem you are facing with? On Mon, Aug 27, 2012 at 11:55 AM, karuna vikas

Re: [android-developers] Re: get the text in edit text on button click

2012-06-04 Thread pushpa nc
In your activity class do the following EditText text = (EditText) findViewById(R.id.youredittextid); EditText text1 = (EditText) findViewById(R.id.youredittextid); and implement onclicklistener btn.setOnclickListener(new OnclickListener(){ public void onclick(){

[android-developers] Re: get the text in edit text on button click

2012-06-03 Thread Raghavendra Rao
hello, i got tht one, i had some other requirement, i got tht via gettext. i need many more guidance in the coming days, kindly do help me. Thanks a lot On 3 June 2012 11:16, Raghavendra Rao raghu1...@gmail.com wrote: Yes i tried, but am not able to get the logic behind tht, am new to this

Re: [android-developers] Re: get the text in edit text on button click

2012-06-03 Thread Fred Niggle
The best advice is to work through as many tutorials as you can find. If you simply dive into android programming without a good grip of its aspects then you will constantly run into trouble. Hope this helps, and good luck. On 3 June 2012 06:46, Raghavendra Rao raghu1...@gmail.com wrote: Yes i

Re: [android-developers] Re: get the text in edit text on button click

2012-06-03 Thread Raghavendra Rao
Hi, Thnks for the advice. Am dng tht nw.. Also wrote an app, wil b soon uploadin by tomo. Need ur valuable guidelines through out Once again am thankful to u On Jun 3, 2012 7:50 PM, Fred Niggle fred.nig...@googlemail.com wrote: The best advice is to work through as many tutorials as you can

Re: [android-developers] Re: get the text in edit text on button click

2012-06-03 Thread TreKing
On Sun, Jun 3, 2012 at 9:32 AM, Raghavendra Rao raghu1...@gmail.com wrote: Thnks for the advice. Am dng tht nw.. Also wrote an app, wil b soon uploadin by tomo. Need ur valuable guidelines through out Once again am thankful to u Here's some guidance: take 2 minutes to proofread your posts.

[android-developers] Re: get the text in edit text on button click

2012-06-02 Thread Raghavendra Rao
Yes i tried, but am not able to get the logic behind tht, am new to this kindly help me On 2 June 2012 23:36, Raghavendra Rao raghu1...@gmail.com wrote: hi, how can i get the text entered by the user in the Edit Text on button click, kindly do help me on this -- You received this message