How to implement SharedPreferences with RadioButtons in Android

前端 未结 2 874
北海茫月
北海茫月 2021-01-25 07:50

I\'m a newb to Android, so please be patient.

I\'m trying to set up a new app and it needs to look like this:

2条回答
  •  醉酒成梦
    2021-01-25 08:36

    What i can guide is that on checkedchanged event you can either get or put values in your shared pref. e.g

                     if(radio1 is checked)
                    {
                    sharedPref.putString(...);  //puts values in pref
                    sharedPref.commit();}
    

提交回复
热议问题