Android富文本處理

在使用Android WebView的項目中,富文本有時候會用,因此在此分享一下富文本的簡單實現

如何設置相似<html>...</html>
<html> <head></head> <body> 哈哈哈 <a href="http://m.baidu.com/u/10001" class="referer">@每天</a> 我贊你了哦 </body> </html>

方法:
TextView tv = new TextView(context);
tv.setText(Html.fromHtml("<html>...</html>"));

下來看一下富文本的簡單實現Demo:
package com.example.textdemo;

import android.app.Activity;
import android.os.Bundle;
import android.text.Html;
import android.text.Spanned;
import android.widget.TextView;

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        
        String str = "<html><head></head><body>哈哈哈 <a href=\"http://m.baidu.com/u/10001\" class=\"referer\">@每天</a>我贊你了哦</body></html>";
        // Spanned : 塊 (相似<span></span>和<div></div>),將字符串str解析成一個一個的塊
        Spanned spanned = Html.fromHtml(str);
        TextView tv1 = (TextView) findViewById(R.id.tv1);
        tv1.setText(spanned);
        
        String content = getBlueText("蓋聶, 衛莊, 張良, 天明") + "等 <font color=\"#FF0000\">88人</font>以爲很贊";
        TextView tv2 = (TextView) findViewById(R.id.tv2);
        tv2.setText(Html.fromHtml(content));
    }

    /**
     * 爲字符串加藍色
     * @param string
     * @return
     */
	private String getBlueText(String string) {
		return String.format("<font color=\"#0000FF\">%s</font>", string); // string 會替換 %s
	}

}

運行效果圖以下:



相關文章
相關標籤/搜索