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 <[email protected]> wrote:
> On Sun, Jun 3, 2012 at 9:32 AM, Raghavendra Rao <[email protected]>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 <http://sites.google.com/site/rezmobileapps/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 [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
>
--
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