码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2016-04-19 22:54:26      阅读:376      评论:0      收藏:0      [点我收藏+]

标签:

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

1.创建Android工程

技术分享

2.TextView文字颜色设置

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<TextView  
    android:id="@+id/mytext1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:textColor="#ffff00"
    android:text="@string/hello"
    />
</LinearLayout>
运行效果如下

技术分享

3.TextView文字大小设置

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<TextView  
    android:id="@+id/mytext1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:textColor="#ffff00"
    android:textSize="22px"
    android:text="@string/hello"
    />
</LinearLayout>

运行效果如下

技术分享

4.TextView上下距离设置

<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距离上边距离

<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背景上的文字显示

<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网址链接

 <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.使用样式表定义常用的组件属性方便维护

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="style_msg">
       <item name="android:layout_width">fill_parent</item>
       <item name="android:layout_height">wrap_content</item>
       <item name="android:textColor">#000000</item>
       <item name="android:textSize">36px</item>
       <item name="android:autoLink">all</item>
    </style>
</resources>
注意:此文件放在values目录下

main.xml使用如下

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

运行效果如下

技术分享

 

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

标签:

原文地址:http://www.cnblogs.com/codestyle/p/5410444.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!