2012年11月20日火曜日

[Android]TextView に使用できるHTMLタグ一覧

TextView にHTMLタグありの文字列をセットすると、
リンクや文字色などを設定することができたりします。

String html_source;
textView.setText(Html.fromHtml(html_source);

しかし、
すべてのHTMLタグが使える訳ではないです。

使用できるタグはここ参照。
http://commonsware.com/blog/Android/2010/05/26/html-tags-supported-by-textview.html


<a href="...">
<b>
<big>
<blockquote>
<br>
<cite>
<dfn>
<div align="...">
<em>
<font size="..." color="..." face="...">
<h1>
<h2>
<h3>
<h4>
<h5>
<h6>
<i>
<img src="...">
<p>
<small>
<strike>
<strong>
<sub>
<sup>
<tt>
<u>




<a>タグでリンク張り、ブラウザ起動させたい場合は、以下の設定も必要です。

MovementMethod movementmethod = LinkMovementMethod.getInstance();
textView.setMovementMethod(movementmethod);



0 件のコメント:

コメントを投稿