2013년 11월 6일 수요일

[AnDrOiD] String Format

strings.xml
MSG : %1$s, %2$d

java source
String getMsg = getResources().getString(R.string.testMessage);

String resultStr = String.format(getMsg, "test", 12345);
TextView txtMsg = (TextView) findViewById(R.id.txtMsg);
txtMsg.setText(resultStr);

댓글 없음 :

댓글 쓰기