[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 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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

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

2012-08-26 Thread Krishna Mahadik
Check if your EditText id is correct. Code is correct.


On Mon, Aug 27, 2012 at 12:02 PM, vinay kumar  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 wrote:
>
>>  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 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 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+unsubscr...@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/android-developers?hl=en
>
>
>  --
> 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+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>



-- 
-- 
. \\\///
.   /\
.   | \\   // |
. ( | (.) (.) |)
--o00o--(_)--o00o-

"Yesterday is not ours to recover, but
tomorrow is ours to win or to lose."

---ooo0---
.   (   )   0ooo
.\ (  (   )
. \_) ) /
.(_/

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

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

2012-08-26 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  wrote:

>  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 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 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+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

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

2012-08-26 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 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 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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

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(){
 text.setText("Textvalue here");
//If you won't to copy text from one edit text box to another use
   text.setText(text1.getText());

  }

} );


On Mon, Jun 4, 2012 at 8:26 AM, TreKing  wrote:

> On Sun, Jun 3, 2012 at 9:32 AM, Raghavendra Rao 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. Good
> spelling and grammar will go a long way to getting good responses. After
> all, if you can't be bothered to spell out words, why should others be
> bothered to help you?
>
>
> -
> TreKing  - Chicago
> transit tracking app for Android-powered devices
>
>
>  --
> 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+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

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  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. Good spelling
and grammar will go a long way to getting good responses. After all, if you
can't be bothered to spell out words, why should others be bothered to help
you?

-
TreKing  - Chicago
transit tracking app for Android-powered devices

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

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"  wrote:

> 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  wrote:
>
>> 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  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 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+unsubscr...@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/android-developers?hl=en
>>
>
>
>
> --
> Magnetic Door Alarm 
> appis
>  now available in Google Play
>
> --
> 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+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

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  wrote:

> 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  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 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+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>



-- 
Magnetic Door Alarm
appis
now available in Google Play

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

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

2012-06-02 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  wrote:

> 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  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 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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[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  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 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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en