1.用TextView显示图片和文字
可将图片与文字写在一个TextView中
android:drawableTop="@drawable/grass"
2.用TextView显示两种颜色的字体
方法一:在主活动中添加如下代码:
private String source = "<font color=\"#aabb00\">" + "第一种颜色</font>,<font color=\"#00bb00\">第二种颜色</font>," + "<a href=\"http://www.baidu.com/\">百度一下</a>\""; TextView mTextShow=(TextView)findViewById(R.id.myTextView); mTextShow.setText(Html.fromHtml(source));//将source通过Html解析返回给客户端 mTextShow.setMovementMethod(LinkMovementMethod.getInstance());//不设置,点击只能是无效的
代码解释:<font>标签:规定文本的尺寸、字体和颜色:
其中\是转义字符,用来转义“
<a> 标签定义超链接,用于从一个页面链接到另一个页面。
<a> 元素最重要的属性是 href 属性,它指定链接的目标。
在所有浏览器中,链接的默认外观如下:
- 未被访问的链接带有下划线而且是蓝色的
- 已被访问的链接带有下划线而且是紫色的
- 活动链接带有下划线而且是红色的
方法二:使用SpannableString String text1 = "sometimes to say,"; String text2 = "is not to believe"; String text = text1 + text2; TextView tvtext = (TextView) findViewById(R.id.text_view1); SpannableString span = new SpannableString(text); URLSpan url = new URLSpan("http://www.baidu.com"); tvtext.setMovementMethod(LinkMovementMethod.getInstance()); span.setSpan(url, 0, 16, Spanned.SPAN_INCLUSIVE_INCLUSIVE); span.setSpan(new ForegroundColorSpan(Color.BLUE), 0, 16, Spannable.SPAN_INCLUSIVE_INCLUSIVE); span.setSpan(new ForegroundColorSpan(Color.GREEN), 16, text.length(), Spannable.SPAN_EXCLUSIVE_INCLUSIVE); tvtext.setText(span);
3.实现文字横向滚动
<TextView
android:id="@+id/myTextView" android:layout_width="match_parent" android:layout_height="wrap_content" android:focusable="true"//是否获得焦点 android:textColor="@android:color/black" android:ellipsize="marquee"//以跑马灯的形式出现 android:scrollHorizontally="true"//横向滚动 android:marqueeRepeatLimit="marquee_forever"//表示重复滚动的次数(无限次) android:focusableInTouchMode="true" android:textSize="15dp" android:singleLine="true" android:text="@string/text">