1. 程式人生 > 其它 >1.基本控制元件 TextView基本操作

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檔案中寫,然後要用的時候引入即可

屬性太多記不住怎麼辦????

按住ctrl 滑鼠左鍵點選進去

好的 我們下節課學習陰影