Unable to launch activity?

后端 未结 2 387
野趣味
野趣味 2021-01-26 10:53

I have made some changes in my code before adding async task my app working proper its authenticate username and password from remote server but unable to launch other activity

2条回答
  •  猫巷女王i
    2021-01-26 11:15

    Context is wrong, just change:

    startActivity(new Intent(this, QuestionnActivity.class));
    

    to:

    startActivity(new Intent(LoActivity.this, QuestionnActivity.class));
    

提交回复
热议问题