掩码是一串二进制代码对目标字段进行位与运算,屏蔽当前的输入位,所以有时又称为屏蔽码. 在Android中常使用这种技巧设置flag来判断标记,具体实现可参考framework层的WindowManager.java. 一般flag会写成两种方式看起来比较直观(假设设置的flag为四个字节的长度): 一: private final int FLAG_ONE = 1 << 0;private final int FLAG_TWO = 1 << 1;private final int
The interface that apps use to talk to the window manager. 这个接口用于与 window manager (窗口管理器, 应用框架层) 进行交互. Use Context.getSystemService(Context.WINDOW_SERVICE)to get one of these. 通过 Context.getSystemService(Context.WINDOW_SERVICE)可以获取到WindowManager的实例.
========4 关于android的一个常见错误:Unable to add window --token is not valid android.view.WindowManager$BadTokenException: Unable to add window -- token android.os.BinderProxy@41791b20 is not valid; is your activity running?at android.view.ViewRootImpl
原博客地址:http://aijiawang-126-com.javaeye.com/blog/662336 在Activity中newSpinner是我把mContext传入,但是出了 android.view.WindowManager$BadTokenException: Unable to add window -- token null is not for an application这个错误,参考了达人的文章终于搞定. private Context mcontext; @Ov