Home | History | Annotate | Download | only in widget

Lines Matching defs:LayoutParams

75                 AbsoluteLayout.LayoutParams lp
76 = (AbsoluteLayout.LayoutParams) child.getLayoutParams();
100 * {@link android.view.ViewGroup.LayoutParams#WRAP_CONTENT},
101 * a height of {@link android.view.ViewGroup.LayoutParams#WRAP_CONTENT}
105 protected ViewGroup.LayoutParams generateDefaultLayoutParams() {
106 return new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, 0, 0);
118 AbsoluteLayout.LayoutParams lp =
119 (AbsoluteLayout.LayoutParams) child.getLayoutParams();
132 public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) {
133 return new AbsoluteLayout.LayoutParams(getContext(), attrs);
136 // Override to allow type-checking of LayoutParams.
138 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) {
139 return p instanceof AbsoluteLayout.LayoutParams;
143 protected ViewGroup.LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) {
144 return new LayoutParams(p);
158 public static class LayoutParams extends ViewGroup.LayoutParams {
179 public LayoutParams(int width, int height, int x, int y) {
194 * {@link android.view.ViewGroup.LayoutParams}</li>
201 public LayoutParams(Context c, AttributeSet attrs) {
215 public LayoutParams(ViewGroup.LayoutParams source) {
221 return output + "Absolute.LayoutParams={width="