Problems using SharedPreferences on a Service (getPreferences doesn't exist on a service)

后端 未结 5 1450
無奈伤痛
無奈伤痛 2020-12-13 14:03

I have some shared preferences (latitude, longitude) that I want to access from a service, that is not subclassed from Activity.

In particular, when I try to access

5条回答
  •  我在风中等你
    2020-12-13 14:23

    If you are only using one SharedPreferences for your application, have all your code get it via PreferenceManager.getDefaultSharedPreferences().

提交回复
热议问题