Activity已经泄露了最初的窗口android

时间:2014-01-29 11:49:58

标签: android android-activity textview

我的TextView活动没什么问题。我使用字母侧边栏和overlayView创建活动以绘制字母字符

我想破坏/关闭任何东西,我的TextView。

android.view.WindowLeaked: Activity com.package.activity.ActSklep has leaked window android.widget.TextView@406afc78 that was originally added here

com.package.activity.ActSklep has leaked window android.widget.TextView@4063f550 that was originally added here

我的代码:http://pastebin.com/WqhULBfA

编辑: 类边栏 http://pastebin.com/prRZ9nsf

1 个答案:

答案 0 :(得分:2)

您正在onCreate中将textView添加到窗口,请尝试将其移至onDestroy

((WindowManager) this.getSystemService(Context.WINDOW_SERVICE)).removeView(overlayTextView);