I am trying to align a CheckBoxField and TextField on LEFT and RIGHT respectively using an HorizontalFieldManager. But unfortunately the TextField is never visible.
I tried the same code with two buttons, and the buttons were visible without any trouble (one button on the right corner and the other on the left corner of the screen).
But I am not sure, why I can't acheive the same if I use a CheckBoxField. Here is my code,
checkBoxHorizontalFieldManager=new HorizontalFieldManager(HorizontalFieldManager.USE_ALL_WIDTH);
keepLoggedCheckboxField=new CheckboxField("keep Me Logged In", true,CheckboxField.FIELD_LEFT);
forgotPasswordTextField=new TextField(TextField.FIELD_RIGHT);
forgotPasswordTextField.setText("Forgot Password?");
checkBoxHorizontalFieldManager.add(keepLoggedCheckboxField);
checkBoxHorizontalFieldManager.add(forgotPasswordTextField);
add(checkBoxHorizontalFieldManager);
I even tried reducing the text length on both the fields. But still the same issue.
I think there's two problems here.
Field Alignment
The problem is that a
HorizontalFieldManager
does not use theFIELD_RIGHT
flag you're setting on the text field.HorizontalFieldManager
just lays out fields left to right as you add them. See more here.You can solve this problem a couple ways. See this question for two solutions.
TextField Width
I believe the
TextField
is also taking up all available width by default, and it lays out its text on the left side of the field, by default. So, only solving the field alignment problem won't be enough. You can fix this either of two ways: make theTextField
draw its text right-aligned, or shrink the width of theTextField
to just barely fit the text.For the first solution, you can see a sample blog post I added here.
For the second solution, you can override
Field#layout()
in theTextField
class. That solution, combined with one field alignment solution, might look like this: