ActivityNotFoundException?

后端 未结 10 761
滥情空心
滥情空心 2020-12-01 14:25

I am getting an ActivityNotFoundException in the following code:

Main.java

Intent intent = new Intent();
     intent.setAction(\"com.tes         


        
10条回答
  •  借酒劲吻你
    2020-12-01 15:13

    To be safe you can also call your new activity like this:

    Intent intent = new Intent();
    intent.setClass(this, THECLASSNAME);
    startActivity(intent); // 
    

    However, you must add the activity to the androidmanifest - and write a . in front of it, e.g.

    
    

提交回复
热议问题