codelab-mlkit-android icon indicating copy to clipboard operation
codelab-mlkit-android copied to clipboard

Step 6. Error in code

Open mntls opened this issue 5 years ago • 0 comments

                Graphic textGraphic = new TextGraphic(mGraphicOverlay, elements.get(k));
                mGraphicOverlay.add(textGraphic);

Should be...

                GraphicOverlay.Graphic textGraphic = new TextGraphic(mGraphicOverlay, elements.get(k));
                mGraphicOverlay.add(textGraphic);

mntls avatar Oct 02 '19 00:10 mntls