<?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文件中写,然后要用的时候引入即可
属性太多记不住怎么办????
按住ctrl 鼠标左键点击进去
好的 我们下节课学习阴影