how to Fix Unable to find explicit activity class

前端 未结 5 1349
心在旅途
心在旅途 2021-01-25 21:00
public class MultiColumnActivity extends Activity implements OnClickListener {
    private ArrayList> list;
    Button filterButton;
         


        
5条回答
  •  粉色の甜心
    2021-01-25 21:29

    If your activity outside main package then declare like this :

     
    

    Instead of

    Intent intent = new Intent();
    
    intent.setClassName("com.nous.demoexample", "com.nous.demoexample.Dateactvity");
    

    Write like this :

    Intent oIntent = new Intent(getApplicationContext(), com.nous.demoexample.Dateactvity.class);
    

提交回复
热议问题