1.基本控件 TextView基本操作

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<TextView
android:id="@+id/tv_one"
android:text="@string/tv_one"
android:textColor="@color/myColor"
android:textStyle="italic"
android:textSize="30sp"
android:background="#FFFF00"
android:gravity="bottom"
android:layout_width="200dp"
android:layout_height="200dp"/>

<!-- android:textStyle="bold" 粗体
android:textStyle="italic" 斜体
字体sp单位是为了适应不同的设备,自适配-->

</LinearLayout>


我们正规的添加颜色或者字符串要在xml文件中写,然后要用的时候引入即可

1.基本控件 TextView基本操作

 

 

 1.基本控件 TextView基本操作

 

 

 

属性太多记不住怎么办????

1.基本控件 TextView基本操作

按住ctrl 鼠标左键点击进去

 1.基本控件 TextView基本操作

 

 好的 我们下节课学习阴影

 

1.基本控件 TextView基本操作

上一篇:HADOOP MAPREDUCE(12):MapReduce开发总结


下一篇:问题(二)