Home | History | Annotate | Download | only in launcher2

Lines Matching defs:LayoutParams

102             PagedViewCellLayout.LayoutParams params) {
103 final PagedViewCellLayout.LayoutParams lp = params;
309 PagedViewCellLayout.LayoutParams lp = (PagedViewCellLayout.LayoutParams) child.getLayoutParams();
374 public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) {
375 return new PagedViewCellLayout.LayoutParams(getContext(), attrs);
379 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) {
380 return p instanceof PagedViewCellLayout.LayoutParams;
384 protected ViewGroup.LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) {
385 return new PagedViewCellLayout.LayoutParams(p);
388 public static class LayoutParams extends ViewGroup.MarginLayoutParams {
428 public LayoutParams() {
429 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
434 public LayoutParams(Context c, AttributeSet attrs) {
440 public LayoutParams(ViewGroup.LayoutParams source) {
446 public LayoutParams(LayoutParams source) {
454 public LayoutParams(int cellX, int cellY, int cellHSpan, int cellVSpan) {
455 super(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);