Android 教學【開發 Android App 手機應用程式:使用 kotlin 程式語言】ConstraintLayout 約束佈局基本使用技巧
【開發 Android APP 手機應用程式:使用 kotlin 程式語言】
線上教學課程目錄:http://bit.ly/3gH1Gjw
Youtube 課程播放清單:https://bit.ly/433Offj
課程摘要
本課程學習如何使用 ConstraintLayout 約束佈局基本技巧
教學影片
若您無法順利觀看教學影片,請先登入您的 YouTube 帳號,然後點擊以下連結加入我們的頻道會員:
build.gradle
加入 ConstraintLayout 依賴套件
implementation ("androidx.constraintlayout:constraintlayout:2.1.4")
activity_main.xml
...
<TextView
android:id="@+id/helloWorldTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent" />
...
那這次的課程就介紹到這邊囉~
順帶一提,KT 線上教室,臉書粉絲團,會不定期發佈相關資訊,不想錯過最新資訊,不要忘記來按讚,加追蹤喔!也歡迎大家將這套課程分享給更多人喔。
我們下次再見囉!!!掰掰~