Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> andorid中Html.fromHtml方法

andorid中Html.fromHtml方法

編輯:關於Android編程

在android中,有一個容易遺忘的Html.fromhtml方法,意思是可以將比如文本
框中的字符串進行HTML格式化,支持的還是很多的,
 
但要注意的是要在string.xml中用<!--cdata-->去轉義,比如:
Java代碼
<string name="htmlFormattedText">
      <![CDATA[
      Text with markup for [b]bold[/b]
      and [i]italic[/i] text.
 
      There is also support for a 
      <tt>teletype-style</tt> font. 
      But no use for the <code>code</code>
      tag!
 
      ]]></string>
上面就用到了大量的HTML標簽了,JAVA代碼中這樣使用:
Java代碼
TextView view = (TextView)findViewById(R.id.sampleText);
String formattedText = getString(R.string.htmlFormattedText);
Spanned result = Html.fromHtml(formattedText);
view.setText(result);
或者是這樣寫:
view.setText(Html.fromHtml("<u>今天禮拜五</u>"));
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved