Here\'s the problem: When I have an activity running in the background, and I switch locales, and I switch back to the application, everything updates... EXCEPT checkboxes and r
This 2 years old ticket proposes a workaround of not using the android:id so I fixed this issue by using a similar layout:
So now to get the RadioButton I use something like this:
private RadioButton getButton(RelativeLayout layout) {
RadioButton button = null;
if (layout.getChildCount() != 0) {
button = (RadioButton) layout.getChildAt(0);
}
return button;
}
So I can set the properties programmatically.