Home > Back-end >  After change of Android SDK version 33 suggestion not work in xml layout file
After change of Android SDK version 33 suggestion not work in xml layout file

Time:08-30

I have change targetSdkVersion 33 and compileSdkVersion 33 then current code in layout file suggestion not working. I have try with cntrl space but not working. Like i have added one button in layout and I want to define text or text color size etc. Property from xml code. but not get suggestion for example android:text

 compileSdkVersion 33
 defaultConfig {
    applicationId "com.xyz"
    minSdkVersion 21
    targetSdkVersion 33
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    vectorDrawables.useSupportLibrary = true
}

  buildFeatures {
    dataBinding true
}

See below image for more understanding enter image description here

enter image description here

CodePudding user response:

I had the same problem after migration to the 33 SDK version. It's a bug in Android Studio Chipmunk, this enter image description here

  • Related