Lines Matching refs:LayoutParams

78      * {@link LayoutParams} {@link LayoutParams#token}
172 public static class LayoutParams extends ViewGroup.LayoutParams implements Parcelable {
191 * to the view associated with these LayoutParams. Specify 0 if the view
200 * to the view associated with these LayoutParams. Specify 0 if the view
1013 * w.setFlags(WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED,
1014 * WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED);
1312 * Further, this can only be set by {@link LayoutParams#TYPE_STATUS_BAR}.
1327 * This can only be set by {@link LayoutParams#TYPE_STATUS_BAR}.
1931 public LayoutParams() {
1932 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
1937 public LayoutParams(int _type) {
1938 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
1943 public LayoutParams(int _type, int _flags) {
1944 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
1950 public LayoutParams(int _type, int _flags, int _format) {
1951 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
1957 public LayoutParams(int w, int h, int _type, int _flags, int _format) {
1964 public LayoutParams(int w, int h, int xpos, int ypos, int _type,
2012 * override the window's pixel {@link WindowManager.LayoutParams#format format}.</p>
2093 public static final Parcelable.Creator<LayoutParams> CREATOR
2094 = new Parcelable.Creator<LayoutParams>() {
2095 public LayoutParams createFromParcel(Parcel in) {
2096 return new LayoutParams(in);
2099 public LayoutParams[] newArray(int size) {
2100 return new LayoutParams[size];
2105 public LayoutParams(Parcel in) {
2194 public final int copyFrom(LayoutParams o) {
2379 Log.d("Debug", "WindowManager.LayoutParams={title=" + mTitle + "}");
2386 sb.append("WM.LayoutParams{");
2515 * @see LayoutParams#restore()
2531 * @see LayoutParams#backup()