My problem is that layout of my application does not behave in a same manner on different platforms. etc. On Windows platform fonts are larger than on Android or iOS so I'm trying to fix this programmatically.
In case of MultiButton I used:
if (platformOS.equals("win")) {
findMultiButtonMainMenu1(f).setUIIDLine1("MultiButtonCustom");
}
I dont see that MultiList has method for changing specific line UIID. Is there a way to change UIID of the specific MultiList line programmatically?
Is this the right way to go or I should try to use a different theme when application is running on Windows platform?