I\'m new to the android development and having a bit of a problem changing activities. I am trying to change activities from within a method but I am getting the error can
can
First you should get your Context:
Context
private Context context; public CustomAdapter(Context context) { this.context = context; }
And then:
context.startActivity(openThree);