Skip to content

Instantly share code, notes, and snippets.

@Eng-MFQ
Created July 2, 2018 18:51
Show Gist options
  • Save Eng-MFQ/b88d4f79fd0b6ac5725ee315fcf2686e to your computer and use it in GitHub Desktop.
Save Eng-MFQ/b88d4f79fd0b6ac5725ee315fcf2686e 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