Skip to content

Commit

Permalink
Add more special characters to the sample project
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelRocks committed Apr 25, 2017
1 parent 2f3de4e commit 9ce771b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ protected void onCreate(final Bundle savedInstanceState) {
setContentView(R.layout.main_activity);

final TextView questionTextView = (TextView) findViewById(R.id.questionTextView);
questionTextView.setText(String.format(QUESTION, "Does it work?"));
questionTextView.setText(String.format(QUESTION, "How does it work?"));

final TextView answerTextView = (TextView) findViewById(R.id.answerTextView);
answerTextView.setText(String.format(ANSWER, "Sure it does!"));
answerTextView.setText(String.format(ANSWER, "It's magic! ¯\\_(ツ)_/¯"));
}
}

0 comments on commit 9ce771b

Please sign in to comment.