Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save sherif-khalaf/0a86d0fdd1dae942e6beee51382c0bba to your computer and use it in GitHub Desktop.

Select an option

Save sherif-khalaf/0a86d0fdd1dae942e6beee51382c0bba to your computer and use it in GitHub Desktop.
/**
* 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);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment