使用带有TYPE_SYSTEM_ALERT的复选框

时间:2014-07-06 09:14:01

标签: android

我需要在android中绘制我对其他应用程序的看法,以便我使用TYPE_SYSTEM_ALERT,对布局进行充气,但我无法正确使用复选框放入我的视图中:首先我可以选中复选框,但可以'取消选中它,勾选后复选框挂起。

WindowManager.LayoutParams layoutParams = new WindowManager.LayoutParams(width, height,
            WindowManager.LayoutParams.TYPE_SYSTEM_ALERT, 
            WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS,
            PixelFormat.OPAQUE);
LayoutInflater inflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
inflater.inflate(layoutResId, this);
((WindowManager) getContext().getSystemService(Context.WINDOW_SERVICE)).addView(this, layoutParams);

这可能是什么原因?非常感谢。

0 个答案:

没有答案