本文实例讲述了Android开发实现TextView显示丰富的文本的方法。分享给大家供大家参考,具体如下:
如图,显示html的元素控件,点击连接实现上网,发email,拨号
实现源码如下:
MainActivity.java
package com.example.textview2;import android.os.Bundle;import android.app.Activity;import android.text.Html;import android.text.method.LinkMovementMethod;import android.view.Menu;import android.widget.TextView;public class MainActivity extends Activity { private TextView textView1, textView2; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); textView1 = (TextView) this.findViewById(R.id.textview1); textView2 = (TextView) this.findViewById(R.id.textview2); // 添加一段html的标志 String html = "<font color='red'></font><br><br><br>"; html += "<font color='#0000ff'><big><i></i></big></font><p>"; html += "<big><a href='http:///tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context=".MainActivity" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/textview1" android:padding="20sp" /> <TextView android:id="@+id/textview2" android:layout_width="fill_parent" android:layout_height="wrap_content" android:autoLink="all" android:padding="20sp" android:text="@string/link_text" android:textSize="20sp" /></RelativeLayout>希望本文所述对大家Android程序设计有所帮助。