Skip to content

Instantly share code, notes, and snippets.

@shogonir
Created March 7, 2016 10:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shogonir/fd9770a8626120c1701c to your computer and use it in GitHub Desktop.
Save shogonir/fd9770a8626120c1701c to your computer and use it in GitHub Desktop.
EditText editText = (EditText)findViewById(R.id.edit_text);
String editTextString = editText.getText().toString();
TextView textView = (TextView)findViewById(R.id.text_view);
textView.setText(getResources().getString(R.string.label, editTextString));
<resources>
<string name="label">EditText string = %1$s</string>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment