如何在Textview中显示引用?

时间:2015-02-10 13:08:45

标签: android textview bbcode

我如何在Android Textview中显示报价?

在我的字符串中我有一个

BBCode URL IMG and [Quote] tags

等工作,但引用它不转换。


编辑:也许我需要写下我的意思是标签:)

3 个答案:

答案 0 :(得分:1)

使用"向字符串添加引号,然后将该字符串设置为TextView。看一下下面的例子 -

<TextView
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:text="Hii &quot;TextView&quot;"
 android:textSize="15sp" 
 android:layout_marginBottom="10dp"/>

上面的TextView将显示 - Hii&#34; TextView&#34;

答案 1 :(得分:0)

您需要使用\"

来转义引号

myTextView.setText("\"");显示"

答案 2 :(得分:0)

TextView.setText(Html.fromHtml("&ldquo; " + "YOUR TEXT" + " &rdquo;"));