码迷,mamicode.com
首页 > 移动开发 > 详细

兔子--android.view.windowmanager BadTokenException :unable to add window token null is not for applica

时间:2015-07-13 12:11:20      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:android.view.windowm   token null is not fo   

导致报这个错是在于new AlertDialog.Builder(mcontext),虽然这里的参数是AlertDialog.Builder(Context context)但我们不能使用getApplicationContext()获得的Context,而必须使用Activity,因为只有一个Activity才能添加一个窗体。 


环境变量传入错误,不能使application的环境,应该是Activity的环境


  1. new AlertDialog.Builder(MyActivity.this)  
  2.                 .setIcon(android.R.drawable.ic_launch)  
  3.                 .setTitle("Warnning")  
  4.                 .setMessage("haha")  
  5.                 .setPositiveButton("Yes", positiveListener).setNegativeButton(  
  6.                         "No", negativeListener).create().show();  

版权声明:本文为博主原创文章,未经博主允许不得转载。

兔子--android.view.windowmanager BadTokenException :unable to add window token null is not for applica

标签:android.view.windowm   token null is not fo   

原文地址:http://blog.csdn.net/u013425527/article/details/46859841

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!