code for displaying message in ANDROID.....
| /** | |
| * This method displays the given text on the screen. | |
| */ | |
| private void displayMessage(String message) { | |
| TextView priceTextView = (TextView) findViewById(R.id.price_text_view); | |
| priceTextView.setText(message); | |
| } |
Comments
Post a Comment