我无法找到LayoutParams的顺序和含义的描述 构造函数参数。这是我在developer.android.com上可以找到的全部内容:
WindowManager.LayoutParams()
WindowManager.LayoutParams(int _type)
WindowManager.LayoutParams(int _type, int _flags)
WindowManager.LayoutParams(int _type, int _flags, int _format)
WindowManager.LayoutParams(int w, int h, int _type, int _flags, int _format)
WindowManager.LayoutParams(int w, int h, int xpos, int ypos, int _type, int _flags, int _format)
WindowManager.LayoutParams(Parcel in)
..........没有进一步说明。我假设,例如,“int w”是 设置宽度参数。
有谁知道哪里有好的描述?
答案 0 :(得分:0)
我遇到了同样的问题!
我终于通过将LayoutParams的“type”设置为“TYPE_SYSTEM_ALERT”来解决它,它始终位于应用程序窗口之上: