android / codelab-mlkit-android

Other
179 stars 101 forks source link

Step 6. Error in code #26

Open mntls opened 4 years ago

mntls commented 4 years ago
                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);