1

我需要捕获图像的字符,所以我正在使用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()总是错误的。

我有一个项目要在下周末之前完成。请帮助解决此错误。

4

1 回答 1

0

我找到了我的问题的答案。

我们需要在命令提示符下应用以下命令。然后问题就解决了。

adb root
adb remount
adb shell setenforce 0  it will disable SE policy 
adb remount
于 2017-04-19T03:55:40.740 回答