textview可以设置字体的粗体 斜体吗
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了textview可以设置字体的粗体 斜体吗相关的知识,希望对你有一定的参考价值。
参考技术A 1、设置TextView中文本的样式(如:颜色、斜体等),可以针对不同位置的文本设置不同的样式(如:将索引范围在1-3的字符设置为黑色,2-6的字符设置为粗体等)
myFirstTextView = (TextView)findViewById(R.id.myFirstTextView);
myFirstTextView.setText("这是我的第一个TextView,嘿嘿",BufferType.EDITABLE);
/**
* 要设置文本的背景色,
* 必须将文本设置成BufferType.SPANNABLE,BufferType.EDITABLE
*/
Spannable sp = (Spannable) myFirstTextView.getText();
//设置红色背景
sp.setSpan(new BackgroundColorSpan(Color.RED), 3, 8,
Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
sp.setSpan(new StyleSpan(android.graphics.Typeface.BOLD_ITALIC),
0, 7, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); //设置斜体
myFirstTextView.setText(sp);
复制代码
2、实现文本超链接
/************
* 设置超链接
* 在layout/*.xml中设置TextView属性:android:autoLink="all" 即可
* 支持:web/phone/email/map/all/none
* *******/
hyperlinkTextView = (TextView)findViewById(R.id.hyperlinkTextView);
hyperlinkTextView.setText("my blog -> http://orgcent.com");
复制代码
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/main"
android:textSize="65px"
/>
可以
可以在XML里面加一句话
android:textSize=""
或者
在
mTextView.setTextSize(size);本回答被提问者采纳
代码过滤富文本的粗体 斜体 颜色 空格
开发聊天过程中,可能会用到 lua 过滤富文本的粗体 斜体 颜色的逻辑。比较简单直接看代码
---过滤富文本的Size
---@param text string
function StringUtil.filterRichTextSize(text)
local replaceText, number = string.gsub(text, "<size=[0-9]+>(.-)</size>", "%1")
if number > 0 then
return replaceText
else
return text
end
end
---过滤富文本的粗体
---@param text string
function StringUtil.filterRichTextBold(text)
local replaceText, number = string.gsub(text, "<b>(.-)</b>", "%1")
if number > 0 then
return replaceText
else
return text
end
end
---过滤富文本的颜色
---@param text string
function StringUtil.filterRichTextColor(text)
local replaceText, number = string.gsub(text, "<color=#[a-zA-Z0-9]+>(.-)</color>", "%1")
if number > 0 then
return replaceText
else
return text
end
end
---过滤富文本的斜体
---@param text string
function StringUtil.filterRichTextItalic(text)
local replaceText, number = string.gsub(text, "<i>(.-)</i>", "%1")
if number > 0 then
return replaceText
else
return text
end
end
---过滤文本前后的空格
---@param text string
function StringUtil.filterTextSpace(text)
local replaceText, number = string.gsub(text, "^%s*(.-)%s*$", "%1")
if number > 0 then
return replaceText
else
return text
end
end
---过滤文本中所有的空格
---@param text string
function StringUtil.filterAllTextSpace(text)
local replaceText, number = string.gsub(text, " ", "")
if number > 0 then
return replaceText
else
return text
end
end
以上是关于textview可以设置字体的粗体 斜体吗的主要内容,如果未能解决你的问题,请参考以下文章