Skip to content

Instantly share code, notes, and snippets.

Created April 29, 2015 00:15
Show Gist options
  • Save anonymous/f5feae51009b9f8bc956 to your computer and use it in GitHub Desktop.
Save anonymous/f5feae51009b9f8bc956 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);
}
@Marsworld9
Copy link

Marsworld9 commented Jun 19, 2022

This string message will help to crash any business in few time!!

public void submit (View view){
String priceTextView = "Free";
displayMessage(priceTextView);
}

/**

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

@Samdzaka
Copy link

Samdzaka commented Jul 1, 2022

Thank you! 😊

@hafsabelka
Copy link

ok thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment