全部,
我的字符串资源 xml 文件中有以下内容。
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="hello">Hello World, ProDroid_Android!</string> <string name="app_name">ProDroid_Android-CH3-Resources</string> <plurals name ="eggs_in_A_basket"> <item quantity ="one"> There is 1 egg</item> <item quantity = "other"> There are %d eggs</item> </plurals> <string name="simple_string">simple string</string> <string name="quoted_string">"Quoted String 'xyz' string"</string> <string name="double_quoted_string">\"Double Quoted String\""\";</string> <string name="java_format_string">Hello %2$s Java format String. %1$s again.</string> <string name="tagged_string">Hello <b><i> Slanted Android.</i></b>, You are bold</string>
当我将 tagged_string 放入具有 HTML 格式的 TextView 时,它不会以它的格式显示。但是,如果我剪切并粘贴Hello Slanted Android。,你是粗体并手动将它放入 .setText 它可以工作,或者如果我在我的布局 xml 文件中静态设置它。但是,使用下面的 Java 代码不起作用(您看到的只是未格式化的文本):
//HTML
TextView t6 = (TextView) findViewById(R.id.textView6);
t6.setText(Html.fromHtml(ProDroid_Android.this.getString(R.string.tagged_string)));
任何帮助,将不胜感激。
谢谢