美文网首页
在Adapter中使用SharedPreferences

在Adapter中使用SharedPreferences

作者: gneL | 来源:发表于2019-04-07 16:47 被阅读0次

        在Activity中,SharedPreferences获取编辑器的对象:

SharedPreferences shared = getSharedPreferences("share", MODE_PRIVATE);

        但是在Adapter中,没办法直接获取getSharedPreferences方法,在前面加上Context

SharedPreferences shared =Context.getSharedPreferences("share",MODE_PRIVATE);

相关文章

网友评论

      本文标题:在Adapter中使用SharedPreferences

      本文链接:https://www.haomeiwen.com/subject/zlvsiqtx.html