Cannot resolve method startActivity()

后端 未结 4 711
天命终不由人
天命终不由人 2021-02-07 09:08

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

4条回答
  •  失恋的感觉
    2021-02-07 09:48

    You should use the context of your adapter:

    public void open301(View view) {
      Intent openThree = new Intent(context,ThreeZeroOne.class);
      context.startActivity(openThree);
    }
    

提交回复
热议问题