1

我已经安装了Android Studio 4.1 Canary,但Layout Inspector根本没有显示实时更新和进程。从 Android Studio 设置启用 Experimental 但没有发生任何事情。

这是我的build.gradle文件。所以一切看起来都不错,但没有显示实时更新。

 apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
apply plugin: "androidx.navigation.safeargs.kotlin"

android {
    compileSdkVersion 29

    defaultConfig {
        applicationId "com.example.test"
        minSdkVersion 21
        targetSdkVersion 29
        buildToolsVersion "29.0.3"
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        targetCompatibility JavaVersion.VERSION_1_8
        sourceCompatibility JavaVersion.VERSION_1_8
    }
    configurations.all {
        resolutionStrategy {
            force 'androidx.appcompat:appcompat:1.1.0'
            force  'com.google.android.exoplayer:exoplayer:2.10.4'
        }
    }
    kotlinOptions {
        jvmTarget = JavaVersion.VERSION_1_8
    }
}

dependencies {
    implementation fileTree(dir: "libs", include: ["*.jar"])
    implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
    implementation 'androidx.core:core-ktx:1.2.0'
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'



}
4

3 回答 3

1

您必须在 API 29 或更高版本中运行您的 Android Studio 项目才能查看 Android Studio Canary 版本的 Layout Inspector 的实时更新。

于 2020-03-12T09:00:03.113 回答
1

有一个类似的问题,似乎布局检查器适用于最近的 Android 版本模拟器。

不适用于 API 28 模拟器,但可以使用 API 29 模拟器。

于 2020-07-28T13:06:25.263 回答
0

此问题在更新Android Studio 4.1 Canary 2后修复。现在它工作正常。

于 2020-03-12T10:23:38.663 回答