NullPointerException On Android.os.Bundle

前端 未结 3 2013
星月不相逢
星月不相逢 2020-12-18 11:23

I have some problem with my code, when I need to transfer some data from one Activity to another one. First Activity (ViewCashflow) a

3条回答
  •  庸人自扰
    2020-12-18 11:53

    Try this in your ViewCashFlow class:

    Intent i = new Intent(Context.getApplicationContext(), NewTransaction.class);
    

提交回复
热议问题