Re: [android-developers] How to identify be setText Button with String Name from string.xml

2012-12-05 Thread Παύλος-Πέτρος Τουρνάρης
The String with the name btnButton is accessible through
R.string.btnButton, for example: String myButtonText =
getApplicationContext().getString(R.string.btnButton);

The  Button component is accessible through R.id.btnButton, for example:
Button myButton = (Button) findViewById(R.id.btnButton);


On Wed, Dec 5, 2012 at 6:24 AM, Tai Pham phv...@gmail.com wrote:

 I declare in string.xml file string name=btnButton Button / string
 and a setText Button = @ string / btnButton
 Now in the code, I want to know which button was setText, how to determine
 is btnButton?
 Please get help.
 Thanks!

 --
 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] How to identify be setText Button with String Name from string.xml

2012-12-04 Thread Tai Pham
I declare in string.xml file string name=btnButton Button / string
and a setText Button = @ string / btnButton
Now in the code, I want to know which button was setText, how to determine 
is btnButton?
Please get help.
Thanks!

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