1.基本属性使用
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="我爱java"
android:textSize="20sp"
android:drawableRight="@drawable/a"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="我爱java我爱java我爱java我爱java我爱java我爱java我爱java我爱ja"
android:singleLine="true"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="邮件是 kongyeeku@163.com, 电话是13135211076"
android:autoLink="email|phone"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="测试文字"
android:gravity="center"
android:textSize="30sp"
android:textColor="#ff0000"
android:shadowColor="#00ff00"
android:shadowDx="10"
android:shadowDy="10"
android:shadowRadius="3.0"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="hello"
android:password="true"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="111111"
android:background="@drawable/shape"
/>
2 圆角边框,背景色
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#00ff00" />
<corners android:bottomLeftRadius="20dp"
android:bottomRightRadius="5dp"
android:topLeftRadius="20dp"
android:topRightRadius="10dp"/>
<stroke android:width="4px" android:color="#ff00ff"/>
</shape>