个人知识总结:View篇--TextView

Displays text to the user and optionally allows them to edit it. A TextView is a complete text editor, however the basic class is configured to not allow editing; see for a subclass that configures the text view for editing.

这是Google官方对TextView的一个介绍:向用户显示文本,并允许用户编辑文本。TextView是一个完整的文本编辑器,但是基本类配置为不允许编辑;查看配置用于编辑的文本视图的子类。

常用属性
  • android:autoLink设置是否当文本为URL链接/email/电话号码/map时,文本显示为可点击的链接。可选值(none/web/email/phone/map/all)
  • android:autoText如果设置,将自动执行输入值的拼写纠正。此处无效果,在显示输入法并输入的时候起作用。
  • android:bufferType指定getText()方式取得的文本类别。选项editable 类似于StringBuilder可追加字符,
    也就是说getText后可调用append方法设置文本内容。
  • android:capitalize设置英文字母大写类型。此处无效果,需要弹出输入法才能看得到,参见EditView此属性说明。
  • android:cursorVisible设定光标为显示/隐藏,默认显示。
  • android:digits设置允许输入哪些字符。如“1234567890.+-*/% ()”
  • android:editable设置是否可编辑。
  • android:editorExtras设置文本的额外的输入数据。
  • android:ellipsize设置当文字过长时,该控件该如何显示。有如下值设置:”start”—?省略号显示在开头;”end”——省略号显示在结尾;”middle”—-省略号显示在中间; ”marquee” ——以跑马灯的方式显示(动画横向移动)
  • android:freezesText设置保存文本的内容以及光标的位置。
  • android:imeOptions附加功能,设置右下角IME动作与编辑框相关的动作,如actionDone右下角将显示一个“完成”,而不设置默认是一个回车符号。这个在EditView中再详细 说明,此处无用。
  • android:imeActionId设置IME动作ID。
  • android:imeActionLabel设置IME动作标签。
  • android:includeFontPadding设置文本是否包含顶部和底部额外空白,默认为true。
  • android:inputMethod为文本指定输入法,需要完全限定名(完整的包名)。例如:com.google.android.inputmethod.pinyin,但是这里报错找不到。
  • android:inputType设置文本的类型,用于帮助输入法显示合适的键盘类型。在EditView中再详细说明,这里无效果。
  • android:linksClickable设置链接是否点击连接,即使设置了autoLink。
  • android:marqueeRepeatLimit在ellipsize指定marquee的情况下,设置重复滚动的次数,当设置为marquee_forever时表示无限次。
  • android:ems设置TextView的宽度为N个字符的宽度。这里测试为一个汉字字符宽度
  • android:maxEms设置TextView的宽度为最长为N个字符的宽度。与ems同时使用时覆盖ems选项。
  • android:minEms设置TextView的宽度为最短为N个字符的宽度。与ems同时使用时覆盖ems选项。
  • android:maxLength限制显示的文本长度,超出部分不显示。
  • android:lines设置文本的行数,设置两行就显示两行,即使第二行没有数据。
  • android:maxLines设置文本的最大显示行数,与width或者layout_width结合使用,超出部分自动换行,超出行数将不显示。
  • android:minLines设置文本的最小行数,与lines类似。
  • android:lineSpacingExtra设置行间距。
  • android:lineSpacingMultiplier设置行间距的倍数。如”1.2”
  • android:numeric如果被设置,该TextView有一个数字输入法。此处无用,设置后唯一效果是TextView有点击效果,此属性在EdtiView将详细说明。
  • android:password以小点”.”显示文本
  • android:phoneNumber设置为电话号码的输入方式。
  • android:privateImeOptions设置输入法选项,此处无用,在EditText将进一步讨论。
  • android:scrollHorizontally设置文本超出TextView的宽度的情况下,是否出现横拉条。
  • android:selectAllOnFocus如果文本是可选择的,让他获取焦点而不是将光标移动为文本的开始位置或者末尾位置。TextView中设置后无效果。
  • android:shadowColor指定文本阴影的颜色,需要与shadowRadius一起使用。
  • android:shadowDx设置阴影横向坐标开始位置。
  • android:shadowDy设置阴影纵向坐标开始位置。
  • android:shadowRadius设置阴影的半径。设置为0.1就变成字体的颜色了,一般设置为3.0的效果比较好。
  • android:singleLine设置单行显示。如果和layout_width一起使用,当文本不能全部显示时,后面用“…”来表示。如android:text="test_ singleLine " ,android:singleLine="true" android:layout_width="20dp"将只显示“t…”。如果不设置singleLine或者设置为false,文本将自动换行
  • android:textAppearance设置文字外观。如“?android:attr/textAppearanceLargeInverse”这里引用的是系统自带的一个外观,?表示系统是否有这种外观,否则使用默认的外观。可设置的值如下: textAppearanceButton/textAppearanceInverse/textAppearanceLarge/textAppearanceLargeInverse/textAppearanceMedium/textAppearanceMediumInverse/textAppearanceSmall/textAppearanceSmallInverse
  • android:textColorHighlight被选中文字的底色,默认为蓝色
  • android:textColorLink文字链接的颜色.
  • android:textScaleX设置文字之间间隔,默认为1.0f。
  • android:textStyle设置字形[bold(粗体) 0, italic(斜体) 1, bolditalic(又粗又斜) 2] 可以设置一个或多个,用“|”隔开
  • android:typeface设置文本字体,必须是以下常量值之一:normal 0, sans 1, serif 2, monospace(等宽字体) 3

这里初略的列举出了TextView的属性值,当然那些常识性的属性就没有列举了,还有一些属性即使设置了也没有效果,只有在TextView的子类EditText里面才会起作用,像输入法以及软键盘相关的一些属性,在TextView上面设置都是没有用的。基本上常用的一些功能,都可以在xml中直接配置并实现,像跑马灯滚动,文本左右的图片等。

一个滑动小功能

下面介绍一个TextView文本上下滑动功能,可能有的人会说了,其实可以直接使用EditText,设置成不可编辑就可以了,这也是一种解决办法,我们这里用TextView实现。只需要设置一个属性就可以了(当然前提是你的TextView是固定高度的) ,这个属性只能通过Java语句设置,不能在xml文件里面设置,
textView.setMovementMethod(ScrollingMovementMethod.getInstance());
当然也可以在xml里面去定义滑块的显示和样式。

TextView的常用子类
Button

A user interface element the user can tap or click to perform an action.

Button去Api里面看源码,就会发现他非常的简单,就只是在继承TextView的同时,在构造方法中给与了Button特有的style,

public Button(Context context, AttributeSet attrs) {
        this(context, attrs, com.android.internal.R.attr.buttonStyle);
    }

没有什么额外的操作,也就在8.0以后加入了onResolvePointerIcon方法,手指点击后的一个动态效果。

CheckBox

A checkbox is a specific type of two-states button that can be either checked or unchecked.

CheckBox和Button基本上是一样的,都是在构造方法中给了一个CheckBox特有的style,别的也没有什么特殊的操作。

public CheckBox(Context context, AttributeSet attrs) {
        this(context, attrs, com.android.internal.R.attr.checkboxStyle);
    }
EditText

This is supposed to be a very thin veneer over TextView. Do not make any changes here that do anything that a TextView with a key listener and a movement method wouldn't do!

EditText也和Button,CheckBox一样,在构造方法中给与了EditText特有的style,

public EditText(Context context, AttributeSet attrs) {
        this(context, attrs, com.android.internal.R.attr.editTextStyle);
    }

所不同的是,EditText里面还自动集成了复制,全选复制的功能,并将文本采集到粘贴板中。

 /**
     * Convenience for {@link Selection#setSelection(Spannable, int, int)}.
     */
    public void setSelection(int start, int stop) {
        Selection.setSelection(getText(), start, stop);
    }

    /**
     * Convenience for {@link Selection#setSelection(Spannable, int)}.
     */
    public void setSelection(int index) {
        Selection.setSelection(getText(), index);
    }

    /**
     * Convenience for {@link Selection#selectAll}.
     */
    public void selectAll() {
        Selection.selectAll(getText());
    }

    /**
     * Convenience for {@link Selection#extendSelection}.
     */
    public void extendSelection(int index) {
        Selection.extendSelection(getText(), index);
    }

当然EditText还有其他的功能,但是这些功能都可以最开始提到的TextView的属性值一一实现。

TextView肯定还有其他的子类,但是我们通常使用的也就只有这三种,其他的就不做介绍。

你可能感兴趣的:(个人知识总结:View篇--TextView)