Skip to content
Snippets Groups Projects
Commit 5dfe7ac7 authored by cyberta's avatar cyberta
Browse files

provider selection UI: add some comments about where which provider selection entries are added

parent 1d4883b2
No related branches found
No related tags found
1 merge request!330beta testing fixes and release
......@@ -75,6 +75,7 @@ public class ProviderSelectionFragment extends BaseSetupFragment implements Canc
binding = FProviderSelectionBinding.inflate(inflater, container, false);
radioButtons = new ArrayList<>();
// add configured providers
for (int i = 0; i < viewModel.size(); i++) {
RadioButton radioButton = new RadioButton(binding.getRoot().getContext());
radioButton.setText(viewModel.getProviderName(i));
......@@ -83,13 +84,14 @@ public class ProviderSelectionFragment extends BaseSetupFragment implements Canc
radioButtons.add(radioButton);
}
// add new provider entry
RadioButton addProviderRadioButton = new RadioButton(binding.getRoot().getContext());
addProviderRadioButton.setText(getText(R.string.add_provider));
addProviderRadioButton.setId(ADD_PROVIDER);
binding.providerRadioGroup.addView(addProviderRadioButton);
radioButtons.add(addProviderRadioButton);
// invite code entry
RadioButton inviteCodeRadioButton = new RadioButton(binding.getRoot().getContext());
inviteCodeRadioButton.setText(R.string.enter_invite_code);
inviteCodeRadioButton.setId(INVITE_CODE_PROVIDER);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment