Note for the readers: this question is specific for Codename One only.
The following code works perfectly on iOS:
ComponentGroup cmpGroup = ComponentGroup.enclose(camera, gallery);
cmpGroup.getComponentAt(0).getAllStyles().setAlignment(Component.LEFT);
cmpGroup.getComponentAt(1).getAllStyles().setAlignment(Component.LEFT);
with this CSS:
#Constants {
ComponentGroupBool: true;
includeNativeBool: true;
[...]
}
The problem is that there is no effect on Android.
So, I understood that the CompontGroup UIIDs are implemented in the iOS native theme, but they are not in the Android native theme.
My question is how to make the CompontGroup working in the same way on iOS and Android, using CSS.
