Hey,
does somebody knows a way to get the Picker Icons of an RadioGroupIcon bigger on mobile view? The tex is always way bigger than the radio button when I use Canvas.resizeFonts( 4 ) to make the mobile view fonts larger.
Using Canvas.resizeControls( 6 ); does make them larger.
My button Texts are also cutted... no matter how high I make those buttons.
Thanks
Andy
does somebody knows a way to get the Picker Icons of an RadioGroupIcon bigger on mobile view? The tex is always way bigger than the radio button when I use Canvas.resizeFonts( 4 ) to make the mobile view fonts larger.
Using Canvas.resizeControls( 6 ); does make them larger.
Code:
RadioGroupItem replyItem = new RadioGroupItem(); replyItem.setColSpan( 2 ); replyItem.setValueMap( replies ); Canvas.resizeFonts( 25 ); Canvas.resizeControls( 20 );
Code:
ButtonItem backButton = new ButtonItem( GWebApp.lang.back() ); backButton.setWidth( 200 ); backButton.setHeight( 40 );
Thanks
Andy
Comment