我需要捕获图像的字符,所以我使用的是TextRecognizer
。我的代码如下:
TextRecognizer textRecognizer = new TextRecognizer.Builder(mActivity.getGalleryApplication().getAndroidContext()).build();
if (!textRecognizer.isOperational()) {
new AlertDialog.Builder(mActivity.getAndroidContext())
.setMessage("Text recognizer could not be set up :(").show();
return;
}
textRecognizer.release();
我在build.gradle中添加了依赖项,如下所示:
dependencies {
compile 'com.google.android.gms:play-services-maps:10.2.1'
compile 'com.google.firebase:firebase-appindexing:10.2.1'
compile 'com.android.support:appcompat-v7:23.0.0'
}
每次我启动apk时,“无法设置文本识别器:显示。即使我已经设置了所有依赖项,但我仍然收到此错误。请帮助为什么TextRecognizer.isOperational()
始终为假。
我有一个项目要在下周末完成。请帮忙解决这个错误。
答案 0 :(得分:0)
我找到了回答我的问题。
我们需要在命令提示符中应用以下命令。然后问题就解决了。
adb root
adb remount
adb shell setenforce 0 it will disable SE policy
adb remount