标签:
---恢复内容开始---
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"/>
运行效果如下
标签:
原文地址:http://www.cnblogs.com/codestyle/p/5410444.html