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

[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