Android开发实现TextView显示丰富的文本
更新时间:2015年12月25日 12:36:42 作者:sgx425021234
这篇文章主要介绍了Android开发实现TextView显示丰富的文本,涉及Android中TextView的使用技巧,需要的朋友可以参考下
本文实例讲述了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://www.baidu.com'>百度</a></big><br>";
CharSequence charSequence = Html.fromHtml(html);
textView1.setText(charSequence);
textView1.setMovementMethod(LinkMovementMethod.getInstance());// 点击的时候产生超链接
String text = "我的URL:http://www.sina.com\n";
text += "我的email:abcd@126.com\n";
text += "我的电话:+ 86 010-89487389";
textView2.setText(text);
textView2.setMovementMethod(LinkMovementMethod.getInstance());
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
strings.xml
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="action_settings">Settings</string> <string name="hello_world">Hello world!</string> <string name="app_name">如何显示html的元素控件</string> <color name="green">#00FF00</color> <string name="link_text"><a href="tel:13693207964">打电话</a></string> </resources>
activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/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程序设计有所帮助。
您可能感兴趣的文章:
- Android实现在TextView文字过长时省略部分或滚动显示的方法
- android实现上下滚动的TextView
- android TextView不用ScrollViewe也可以滚动的方法
- Android中TextView实现垂直滚动和上下滚动效果
- Android TextView实现垂直滚动效果的方法
- Android编程实现TextView垂直自动滚动功能【附demo源码下载】
- Android TextView 字体滚动效果
- Android中TextView实现超过固定行数显示“...展开全部”
- Android TextView显示html样式的文字
- Android实现TextView显示HTML加图片的方法
- Android DrawableTextView图片文字居中显示实例
- Android开发中TextView文本过长滚动显示实现方法分析
相关文章
Android 拍照选择图片并上传功能的实现思路(包含权限动态获取)
这篇文章主要介绍了Android 拍照(选择图片)并上传(包含权限动态获取),本文分步骤给大家介绍的非常详细,具有一定的参考借鉴价值,需要的朋友可以参考下2019-12-12
Android中的SpannableString与SpannableStringBuilder详解
这篇文章主要给大家介绍了关于Android中SpannableString与SpannableStringBuilder的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧。2017-10-10
android的RecyclerView实现拖拽排序和侧滑删除示例
在平时开发应用的时候,经常会遇到列表排序、滑动删除的需求。这篇文章主要介绍了android的RecyclerView实现拖拽排序和侧滑删除示例,有兴趣的可以了解一下。2017-02-02


最新评论