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'
}
}
私はここで何を見逃したのか?
私はAPI 23を使用しています –
@JohnJoe、アンドロイドスタジオの最低要件は2.3です – Maddy