.xml 檔案
,就是設計畫面的地方.kt 檔案
,這裡是用來針對畫面上的東西,製作功能的地方
.xml 檔案
這部分盡量自己去調整每一個屬性試試看會有什麼不同的結果,可以比較快的認識每一個屬性設定
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World-Two!" // 這行有更改
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World-Two!"
android:text="Hello World-Two!" // 加上這行
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
元件
和屬性
這兩個詞,也看到了 TextView 這個元件,明天開始我們要做兩件事情。