I cannot find a description of the order and meaning of LayoutParams' constructor parameters. This is all I can find on 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)
..........with no further description. I assume, for example, "int w" is setting the width parameter.
Does anyone know where there is a good description of this?