将 ConstraintLayout 添加到项目中
要使用 ConstraintLayout,你需要 Android Studio 2.2 或更高版本,并且至少拥有 32 位(或更高版本)的 Android 支持存储库。
- 在
build.gradle
文件中添加 Constraint Layout 库作为依赖项:
dependencies {
compile 'com.android.support.constraint:constraint-layout:1.0.2'
}
- 同步项目
要为项目添加新的约束布局:
- 右键单击模块的布局目录,然后单击
New > XML > Layout XML.
- 输入布局的名称,然后输入
android.support.constraint.ConstraintLayout
作为根标签。 - 单击完成。
否则只需添加一个布局文件:
<?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>