我如何在Android Textview中显示报价?
在我的字符串中我有一个
BBCode URL IMG and [Quote] tags
等工作,但引用它不转换。
编辑:也许我需要写下我的意思是标签:)
答案 0 :(得分:1)
使用"
向字符串添加引号,然后将该字符串设置为TextView
。看一下下面的例子 -
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hii "TextView""
android:textSize="15sp"
android:layout_marginBottom="10dp"/>
上面的TextView将显示 - Hii&#34; TextView&#34;
答案 1 :(得分:0)
您需要使用\"
myTextView.setText("\"");
显示"
答案 2 :(得分:0)
TextView.setText(Html.fromHtml("“ " + "YOUR TEXT" + " ”"));