Home | History | Annotate | Download | only in util

Lines Matching defs:ll

48         final LinearLayout ll = new LinearLayout(context);
49 ll.setOrientation(LinearLayout.VERTICAL);
60 ll.addView(topButton);
67 ll.addView(middleFiller);
72 ll.addView(bottomButton);
73 ll.setTag("twoButtons");
74 return ll;
87 * @param desiredHeight The height of the LL.
93 final LinearLayout ll = new LinearLayout(context);
94 ll.setOrientation(LinearLayout.HORIZONTAL);
121 ll.addView(button, lp);
123 ll.addView(new View(context), lp);
129 ll.addView(button, lp);
131 ll.addView(new View(context), lp);
137 ll.addView(button, lp);
139 ll.addView(new View(context), lp);
142 return ll;
236 final LinearLayout ll = new LinearLayout(context);
237 ll.setOrientation(LinearLayout.HORIZONTAL);
243 ll.setLayoutParams(lp);
244 ll.setId(position);
253 ll.addView(t1, lp1);
264 ll.addView(t2, lp2);
265 ll.setTag("double");
266 return ll;