2017-09-13 13 views
0

ConstlatableLayoutを使用してレスポンシブUIを構築する方法については、articleに従って学習します。しかし、私はAndroidプロジェクトでConstraintLayoutオプションを見ることができません。Androidスタジオで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ライブラリで利用できます。このページでは、のConstraintLayoutでレイアウトを作成するためのガイドを提供しています。あなたが最初にあなたのAndroid-Studioバージョンをアップグレードアンドロイドスタジオの古いバージョンを使用していると

Build responsive UI with ContraintLayout

+0

私はAPI 23を使用しています –

+0

@JohnJoe、アンドロイドスタジオの最低要件は2.3です – Maddy

3

Android Studioを2.2以上に更新する必要があります。制約レイアウトはAndroid Studio 2.2に導入されました。 Android Studioの最新バージョンを使用することを常にお勧めします。

関連する問題