2017-09-13 84 views
0

我學習如何使用ConstraintLayout構建響應式UI,方法是遵循此article。但是我的Android項目中看不到ConstraintLayout選項。Android Studio中沒有ConstraintLayout

的build.gradle

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 23 
    buildToolsVersion "23.0.2" 

    defaultConfig { 
     applicationId "com.example.tony.chatapp" 
     minSdkVersion 15 
     targetSdkVersion 23 
     versionCode 1 
     versionName "1.0" 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 
} 

dependencies { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    compile 'com.android.support:appcompat-v7:23.1.1' 
    compile 'com.android.support.constraint:constraint-layout:1.0.2' 
} 

repositories { 
    maven { 
     url 'https://maven.google.com' 
    } 
} 

enter image description here

我錯過了什麼嗎?

回答

2

ConstraintLayout可用於與Android 2.3(API級別9)及更高版本兼容的API庫中。此頁面提供了在Android Studio 2.3或更高版本中使用ConstraintLayout構建佈局指南

Build responsive UI with ContraintLayout

當你正在使用Android Studio中的舊版本首先升級的Android-Studio版本。

+0

但我使用API​​ 23 –

+0

@JohnJoe,android studio的最低需求是2.3 – Maddy

3

您需要將您的Android Studio升級到2.2或更高版本。約束佈局在Android Studio 2.2中引入。始終推薦使用最新版本的Android Studio。

相關問題