Home | History | Annotate | Download | only in util

Lines Matching refs:desiredHeight

35      * The filler is sized to take up any space left over within desiredHeight.
39 * @param desiredHeight The desired height of the entire view.
42 public static View twoButtonsSeparatedByFiller(int position, Context context, int desiredHeight) {
43 if (desiredHeight < 90) {
65 desiredHeight - 100));
87 * @param desiredHeight The height of the LL.
91 public static View horizontalButtonSlots(Context context, int desiredHeight, Slot... slots) {
97 = new LinearLayout.LayoutParams(0, desiredHeight);
152 * @param desiredHeight The desired height of the button
155 public static View button(int position, Context context, String text, int desiredHeight) {
157 result.setHeight(desiredHeight);
192 * @param desiredHeight The desired height of the text view
195 public static View text(int position, Context context, String text, int desiredHeight) {
197 result.setHeight(desiredHeight);
233 * @param desiredHeight The desired height of the button
236 public static View doubleText(int position, Context context, String text, int desiredHeight) {
243 desiredHeight);
248 t1.setHeight(desiredHeight);
257 t2.setHeight(desiredHeight);