"We offer new support options and therefor the forums are now in read-only mode! Please check out our Support Center for more information." - Vuforia Engine Team

How to make the views click-able in Text Recognition?

Hi everyone,

I am tring to make the View in the Linear Layout to be clickable by adding  these few lines inside the  void updateWordListUI(final List<String> words) of the TextReco class

 tv.setOnClickListener(new OnClickListener() {                            @Override                                       public void onClick(View v) {                            Toast.makeText(this, "Testing View clicked",Toast.LENGTH_SHORT).show();                                                         }                        }); but it keep highlighting the makeText and says "The method makeText(Context, CharSequence, int) in the type Toast is not applicable for the arguments (new View.OnClickListener(){}, String, int)" Could someone please help me? Thank you. Regards Aurora