[Android] TextView 属性说明

示例:

<TextView
            android:id="@+id/tvNewDevice"
            android:layout_width="0dp"
            android:layout_height="38dp"
            android:layout_weight = "1"
            android:layout_marginTop="0dp"
            android:text="添加设备"
            android:textAlignment="center"
            android:gravity="center"
            android:textColor="@color/color_text_gray"
            android:textSize="@dimen/title_text_size"
            android:background="@drawable/tv_bg_selector"
            android:clickable="true"
            />
android:textAlignment="center" -- 水平居中
android:gravity="center" --垂直居中
android:background="@drawable/tv_bg_selector" --选中状态
android:clickable="true"
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
    <item android:state_pressed="true">
        <shape android:shape="rectangle">
            <solid android:color="#11000000"/>
        </shape>
    </item>
    <item android:state_pressed="false">
        <shape android:shape="rectangle">
            <!-- 透明色 -->
            <solid android:color="#00000000"/>
        </shape>
    </item>

</selector>

原文地址:https://www.cnblogs.com/fphuang/p/9037996.html

时间: 2024-10-12 01:29:12

[Android] TextView 属性说明的相关文章

Android TextView属性

textAppearance的属性设置 android:textAppearance="?android:attr/textAppearanceSmall" android:textAppearance="?android:attr/textAppearanceMedium" android:textAppearance="?android:attr/textAppearanceLarge" android:textAppearance=&quo

android TextView属性详解

RelativeLayout用到的一些重要的属性: 第一类:属性值为true或false     android:layout_centerHrizontal  水平居中      android:layout_centerVertical   垂直居中     android:layout_centerInparent    相对于父元素完全居中     android:layout_alignParentBottom 贴紧父元素的下边缘     android:layout_alignPar

Android——TextView属性XML详解

Android_TextView属性XML详解 博客分类: android Java代码   属性名称    描述 android:autoLink    设置是否当文本为URL链接/email/电话号码/map时,文本显示为可点击的链接.可选值(none/web/email/phone/map/all) android:autoText    如果设置,将自动执行输入值的拼写纠正.此处无效果,在显示输入法并输入的时候起作用. android:bufferType  指定getText()方式取

Android TextView属性大全

android:ems 设置TextView的宽度为N个字符的宽度. android:maxems 设置TextView的宽度为最长为N个字符的宽度.与ems同时使用时覆盖ems选项.android:minems 设置TextView的宽度为最短为N个字符的宽度.与ems同时使用时覆盖ems选项.android:maxLength 限制输入字符数.如设置为5,那么仅可以输入5个汉字/数字/英文字母.android:lines 设置文本的行数,设置两行就显示两行,即使第二行没有数据.android

Android textAppearance的属性设置及TextView属性详解

textAppearance的属性设置 android:textAppearance="?android:attr/textAppearanceSmall" android:textAppearance="?android:attr/textAppearanceMedium" android:textAppearance="?android:attr/textAppearanceLarge" TextView属性详解 android:autoLi

Android控件Editext、TextView属性详解

EditText属性描述 android:layout_gravity="center_vertical"//设置控件显示的位置:默认top,这里居中显示,还有bottom android:hint="请输入数字!"//设置显示在空间上的提示信息 android:numeric="integer"//设置只能输入整数,如果是小数则是:decimal android:singleLine="true"//设置单行输入,一旦设置为

android textview xml 属性设置

 android:ems 设置TextView的宽度为N个字符的宽度. android:maxems 设置TextView的宽度为最长为N个字符的宽度.与ems同时使用时覆盖ems选项. android:minems 设置TextView的宽度为最短为N个字符的宽度.与ems同时使用时覆盖ems选项. android:maxLength 限制输入字符数.如设置为5,那么仅可以输入5个汉字/数字/英文字母. android:lines 设置文本的行数,设置两行就显示两行,即使第二行没有数据.

Android - TextView Ellipsize属性

Android - TextView Ellipsize属性 本文地址: http://blog.csdn.net/caroline_wendy android:ellipsize属性: If set, causes words that are longer than the view is wide to be ellipsized instead of broken in the middle. 假设字数过长,则会採取省略形式.而不使从中间截断.

Android(java)学习笔记88:TextView属性大全

TextView属性大全: android:autoLink    设置是否当文本为URL链接/email/电话号码/map时,文本显示为可点击的链接.可选值(none/web/email/phone/map/all) android:autoText    如果设置,将自动执行输入值的拼写纠正.此处无效果,在显示输入法并输入的时候起作用. android:bufferType    指定getText()方式取得的文本类别.选项editable 类似于StringBuilder可追加字符,也就