软件包androidx.appcompat.widget不存在Android Studio

时间:2019-04-07 14:52:51

标签: java android imageview androidx

我创建了一个自定义类,该类扩展了ImageView。直到出现AndroidX为止,它的工作情况都很好。

这是Java代码

import android.content.Context;
import android.graphics.BitmapFactory;
import android.util.Base64;
import android.widget.RelativeLayout;

import androidx.appcompat.widget.AppCompatImageView;


public class CloseView extends AppCompatImageView {

    public CloseView(Context context) {
        super(context);
        init();
    }
...

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])

    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support:support-v4:28.0.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

Android对此文件显示2个错误

  1. 错误:找不到符号类AppCompatImageView
  2. 错误:程序包androidx.appcompat.widget不存在

有人能解决此问题吗?

1 个答案:

答案 0 :(得分:3)

您应该完全迁移到AndroidX以使用其类

  1. 在Gradle设置中启用AndroidX
android.useAndroidX=true
android.enableJetifier=true
  1. 替换依赖项
implementation 'androidx.appcompat:appcompat:1.0.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'

代替

 implementation 'com.android.support:appcompat-v7:28.0.0'
 implementation 'com.android.support:support-v4:28.0.0'

请参阅:https://developer.android.com/jetpack/androidx/migrate

编辑:

AndroidX是所有以前编号的支持库的最新替代品。在开始使用它之前,请详细了解here