Android Studio 活动中的视图绑定存在一些inflate和root问题

zsbz8rwp  于 2023-01-02  发布在  Android
关注(0)|答案(1)|浏览(114)

我在android studio中使用inflate和root进行视图绑定时遇到了问题。inflate和root的下面是一条红线。
我还在build.gradle中编写视图绑定模块。这是我的build.gradle代码。

defaultConfig {
    applicationId "com.wallpaper.view"
    minSdk 21
    targetSdk 32
    versionCode 1
    versionName "1.0"

    testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
    }
}
compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
    jvmTarget = '1.8'
}
buildFeatures {
    viewBinding = true
}

相关性{

implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'com.google.android.material:material:1.7.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'

这是我的活动代码。

class MainActivity : AppCompatActivity() {

    lateinit var binding:ActivityMainBinding

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        binding = ActivityMainBinding.inflate(layoutInflater)
        setContentView(binding.root)
    }
}

我在膨胀和根下面有一个读取行。
我该怎么补救呢?

6g8kf2rb

6g8kf2rb1#

我意识到我的build. gradle中的一些模块没有更新,然后我更新了模块和inflate下面的问题或红线,root消失了。
从这个👇

android {
namespace 'com.wallpaper.view'
compileSdk 32

defaultConfig {
    applicationId "com.wallpaper.view"
    minSdk 21
    targetSdk 32
    versionCode 1
    versionName "1.0"

    testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

到这个👇

android {
namespace 'com.wallpaper.view'
compileSdk 33

defaultConfig {
    applicationId "com.wallpaper.view"
    minSdk 21
    targetSdk 33
    versionCode 1
    versionName "1.0"

    testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

我只是更新了compileSdk和targetSdk的版本。

相关问题