Checkbox Passing Of Action On Reopening Of The App
I have stored the checkbox value(check/uncheck) using shared preference,but I face problem while passing the action of checkbox on/after closing and reopening the app.Explantion: A
Solution 1:
Instead of sending 'isCheckedValue' in 'onBubbleClickMethod' try this -
in.putExtra("yourBoolName",preferences.getBoolean("checked",false));
Post a Comment for "Checkbox Passing Of Action On Reopening Of The App"