Android-TextView(文本显示组件2)

---恢复内容开始---

1.创建Android工程

2.TextView文字颜色设置


    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    android:id="@+id/mytext1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:textColor="#ffff00"
    android:text="@string/hello"
    />

运行效果如下

3.TextView文字大小设置


    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    android:id="@+id/mytext1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:textColor="#ffff00"
    android:textSize="22px"
    android:text="@string/hello"
    />


运行效果如下

4.TextView上下距离设置

    android:id="@+id/mytext2"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_margin="30px"
    android:text="网址:www.baidu.com"/>

运行效果如下

5.TextView距离上边距离

    android:id="@+id/mytext3"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="10px"

   android:maxLength="3">(最多显示3个文字)
    android:text="ABABABABABABABA"/>

运行效果如下

6.TextView背景上的文字显示

    android:id="@+id/mytext4"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/log"(背景图片)
    android:textStyle="bold"(文字加粗)
    android:text="这是背景图片上的文字"/>

运行效果如下

7.TextView网址链接

     android:id="@+id/mytext5"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:textColor="#000000"
    android:textSize="36px"
    android:autoLink="all"
    android:text="网址:www.baidu.com"/>

运行效果如下

8.使用样式表定义常用的组件属性方便维护



   

注意:此文件放在values目录下

main.xml使用如下

    android:id="@+id/mytext5"
    style="@style/style_msg"
    android:text="网址:www.baidu.com"/>

运行效果如下

 

转载于:https://www.cnblogs.com/codestyle/p/5410444.html

你可能感兴趣的:(Android-TextView(文本显示组件2))