在Android Android Studio的上下文菜单中添加约束布局障碍

前端之家收集整理的这篇文章主要介绍了在Android Android Studio的上下文菜单中添加约束布局障碍前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我目前正在阅读ConstraintLayout教程,并坚持一个特定的步骤( https://codelabs.developers.google.com/codelabs/constraint-layout/#10).

来源在这里(https://github.com/googlecodelabs/constraint-layout).

根据下面的说明,它表示添加垂直屏障,但我没有在菜单中看到添加选项.实际上整个菜单选项看起来不同. “添加垂直屏障”菜单在哪里?

Right click on ConstraintLayout in the blueprint or the Component
Tree. You will see the Add Vertical barrier and Add Horizontal barrier
options.

我正在运行Android 2.3.3.

build.gradle(模块:app)

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.3"
    defaultConfig {
        applicationId "com.google.googleio"
        minSdkVersion 22
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'),'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs',include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support.constraint:constraint-layout:1.1.0-beta1'
}

解决方法

I am running Android 2.3.3.

我猜你的意思是说你正在运行Android Studio 2.3.3.在那种情况下,没有这样的菜单.这是在Android Studio 3.0中添加的,从今天开始提供测试版.

原文链接:https://www.f2er.com/android/309229.html

猜你在找的Android相关文章