7
XML 형식의 html 형식 문자열 리소스에서 TextView 텍스트 설정
내 안에 고정 문자열이 있습니다 strings.xml. <resources> <string name="somestring"> <B>Title</B><BR/> Content </string> </resources> 그리고 내 레이아웃 TextView에는 html 형식 문자열로 채우고 싶은 것이 있습니다. <TextView android:id="@+id/formattedtext" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/htmlstring"/> 이 작업을 수행하면 내용은 HTML 태그 formattedtext가 somestring제거되어 형식이 지정되지 않은 내용입니다. 형식이 지정된 텍스트를 프로그래밍 방식으로 설정할 수 있음을 알고 …