Android 中自己出现的unable to instantiate application 的问题

  在网上查询到unable to instantiate application的问题都出现AndroidManifest.xml中的Activity的路径问题(详情百度),自己出现的问题是xml中的button按钮还没有和button类绑定,直接使用button类也会出现以上问题。代码如下:

   private void setListener()
  {
  preBtn=(Button)findViewById(R.id.PreActiAndParNoticebtn);
  nextBtn=(Button)findViewById(R.id.NextActiAndParNoticebtn);
  }
  private  void setView()
  {
  nextBtn.setOnClickListener(new View.OnClickListener() {
   
   @Override
   public void onClick(View v)

  {
    Intent nextIntent=new Intent();
    nextIntent.setClass(AND.this,com.example.icf.generic.b230.class);
    startActivity(nextIntent);
   }
  });
 }
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  // TODO Auto-generated method stub
  super.onCreate(savedInstanceState);
     this.setContentView(R.layout.activity_activitiesandparticapationnotices);
  setView();
  setListener();
 }

解决方案:setView方法该改成setListener,setListener方法改成setView。这样使xml中的button按钮先和类中button类绑定,再使用button类的其它方法。

你可能感兴趣的:(android,问题,unable,to,instantiate,application,button类未绑定直接使用)