TextView

作者: 汇源可乐 | 来源:发表于2018-12-07 17:42 被阅读5次

0x01:常用的属性:

属性 描述
textColor 文本颜色
textSize 字大小
gravity 居中方式
background 背景
autoLink all/email/map/none/phone/web点击会有相应的action[不能使用&]
singleLine 单行
lines 最大允许几行
ellipsize 省略号显示属性
typeface 字体样式

设置字体的事例:

在AS里为工程新建一个assets文件夹,点击确定即可;



从windows的C:\Windows\Fonts Copy 一个字体到该目录下。
java Demo:

        textView= (TextView)findViewById(R.id.hello);
        textView.setTypeface(Typeface.createFromAsset(getAssets(),"ALGER.TTF"));
HELLO WORLD!

相关文章

网友评论

      本文标题:TextView

      本文链接:https://www.haomeiwen.com/subject/ntuthqtx.html