Translating this from AppCompatActivity to Fragment and having Intent errors, etc

前端 未结 2 1642
无人共我
无人共我 2021-01-29 06:37

I have been trying for a month doing a lot of research to translate this to Fragment since I need it for my navigation Menu. Basically I\'m creating an app. I\'m using my MainAc

2条回答
  •  梦如初夏
    2021-01-29 07:15

    Fix simple by removing null:

    Intent intent = new Intent(Events.this, AddEvent.class);
    

提交回复
热议问题