我想在Tutorial App中将HTML代码显示为文本
String.xml
<string name="p1"><![CDATA[<html>\n<title> Font tag Example </title>\n<body>\n<font face="arial" size="1" color="blue"> WELCOME </font> <br>\n <font size="2" color="cyan"> WELCOME </font> <br>\n <pre>\n This text uses pre tag and preserves nextline and spaces\n </pre>\n </body>\n </html>]]></string>
prog1.xml
<TextView
android:id="@+id/p1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="15dp"
android:textSize="18sp"
android:text="@string/p1" />
显示但不包含“”,需要显示时带有“”双引号
需要这样显示
答案 0 :(得分:3)
要在textview中显示双引号(“”),请使用
"
这是android的官方网站
https://developer.android.com/guide/topics/resources/string-resource
答案 1 :(得分:0)
在您的string.xml
<string name="ffdfb">\"ffdfb\"</string>
中尝试
要么
<string name="ffdfb">"ffdfb"</string>
否则请在您的xml android:text='"fvdfv"'
中尝试