string.xml 이것은 테스트입니다. Activity.java TextView testView = (TextView) findViewById(R.id.test);String testString = getResources().getString(R.string.test); testView.setText(Html.fromHtml(testView)); string에 html 태그를 삽입하고 Html.fromHtml() 를 통해 Spanned로 변환한 후 setText를 한다.