Androidx ошибка надувать вид - PullRequest
0 голосов
/ 09 июня 2018

Я пытаюсь использовать Androidx.Приложение довольно новое, поэтому кода не так много.Я использовал опцию «Refactor to Androidx» в андроид студии.Но когда-то после этого он перестал работать.Я не знаю, что заставило его перестать работать.

Что я должен делать?

Но он получает эту ошибку

Error inflating class androidx.constraintlayout.widget.ConstraintLayout

Основная деятельность

class MainActivity : AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)

        pick_image.setOnClickListener {
            toast("Pick image clicked")
        }

    }
}

XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:id="@+id/pick_image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="8dp"
        android:layout_marginTop="8dp"
        android:layout_marginEnd="8dp"
        android:layout_marginBottom="8dp"
        android:text="Pick image"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

build.gradle (приложение)

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.alvarlagerlof.blurr"
        minSdkVersion 19
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"

    // Androidx
    implementation 'androidx.core:core-ktx:1.0.0-alpha3'
    implementation 'androidx.appcompat:appcompat:1.0.0-alpha1'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.1'


    // Testing
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.1.0-alpha3'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha3'
}

Ответы [ 3 ]

0 голосов
/ 09 июня 2018

РЕДАКТИРОВАНИЕ 2: Начиная с более новой версии, они вернулись обратно к androidx.constraintlayout.widget.ConstraintLayout.Просто продолжайте читать, если вы используете макет ограничения версии 1.1.1

РЕДАКТИРОВАНИЕ: Как Ответ Артуро Мехии , просто нажмите ⇧⌘R или Ctrl + Shift + R

заменить любые

androidx.constraintlayout.widget.ConstraintLayout

на

androidx.constraintlayout.ConstraintLayout

во всех файлах XML, которые используют макет ограничения.

Это изменение, поскольку версия макета ограничения v1.1.1 (в v1.1.0 класс ConstraintLayout все еще находится в пакете ".widget")

Старый ответ:

Изменить с

implementation 'androidx.constraintlayout:constraintlayout:1.1.1'

на

implementation 'androidx.constraintlayout:constraintlayout:1.1.0'

Я пытался нажать Ctrl + Click на ConstraintLayout в androidx.constraintlayout.widget.ConstraintLayoutиз файла XML, чтобы показать оригинальный класс, но он ничего не находит.После того, как я отредактировал версию макета ограничения на 1.1.0, он там.

0 голосов
/ 22 декабря 2018

В моем случае помогло обновление зависимости

implementation 'androidx.constraintlayout:constraintlayout:1.1.2'

до

implementation 'androidx.constraintlayout:constraintlayout:1.1.3'

0 голосов
/ 09 июня 2018

Я исправил это, изменив зависимости gradle от alpha3 до alpha1

...