將 ConstraintLayout 新增到專案中

要使用 ConstraintLayout,你需要 Android Studio 2.2 或更高版本,並且至少擁有 32 位(或更高版本)的 Android 支援儲存庫。

  1. build.gradle 檔案中新增 Constraint Layout 庫作為依賴項:
dependencies {
   compile 'com.android.support.constraint:constraint-layout:1.0.2'
}
  1. 同步專案

要為專案新增新的約束佈局:

  1. 右鍵單擊模組的佈局目錄,然後單擊 New > XML > Layout XML.
  2. 輸入佈局的名稱,然後輸入 android.support.constraint.ConstraintLayout 作為根標籤。
  3. 單擊完成

否則只需新增一個佈局檔案:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

</android.support.constraint.ConstraintLayout>