简体   繁体   English

无法解析符号“MediaSessionCompat”

[英]Cannot resolve symbol 'MediaSessionCompat'

I cannot import MediaSessionCompat .我无法导入MediaSessionCompat The import statement for importing the whole android.support.v4.media library does not show up in the Android Studio "IntelliSense" and it cannot resolve the symbol for anything inside it.用于导入整个android.support.v4.media库的 import 语句未显示在 Android Studio“IntelliSense”中,并且无法解析其中任何内容的符号。

Do I have to make some kind of extra configuration to get this import, like in app build.gradle ?我是否必须进行某种额外的配置才能获得此导入,例如在 app build.gradle

Add these to your dependencies and sync Gradle:将这些添加到您的依赖项并同步 Gradle:


Pre-AndroidX AndroidX 之前的版本

implementation "com.android.support:support-compat:28.0.0"
implementation "com.android.support:support-media-compat:28.0.0"

Post-AndroidX后AndroidX

implementation 'androidx.core:core:1.3.1'
implementation 'androidx.media:media:1.2.0'

Note from official documentation:官方文档中的注释

With the release of Android 9.0 (API level 28) there is a new version of the support library called AndroidX which is part of Jetpack.随着 Android 9.0(API 级别 28)的发布,有一个名为 AndroidX 的新版本支持库,它是 Jetpack 的一部分。 The AndroidX library contains the existing support library and also includes the latest Jetpack components. AndroidX 库包含现有的支持库,还包含最新的 Jetpack 组件。 You can continue to use the support library.您可以继续使用支持库。 Historical artifacts (those versioned 27 and earlier, and packaged as android.support.*) will remain available on Google Maven.历史工件(那些版本为 27 及更早版本并打包为 android.support.* 的工件)仍可在 Google Maven 上使用。 However, all new library development will occur in the AndroidX library.但是,所有新库的开发都将在 AndroidX 库中进行。 We recommend using the AndroidX libraries in all new projects.我们建议在所有新项目中使用 AndroidX 库。 You should also consider migrating existing projects to AndroidX as well.您还应该考虑将现有项目迁移到 AndroidX。

The latest dependencies are:最新的依赖是:

implementation 'androidx.core:core:1.1.0'
implementation 'androidx.media:media:1.1.0'

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM