将SharedPreferences传递给doInBackground()

将SharedPreferences传递给doInBackground(),第1张

将SharedPreferences传递给doInBackground()

你不能,你不应该。您可以轻松地读取内部首选项,而

doInBackground()
无需将任何内容传递给方法,只需使用即可
PreferenceManager

public class DownloadFiles extends AsyncTask<URL, Void, Void> {  Context ctx;  DownloadFiles(Context ctx) {    this.ctx = ctx;  }  @Override  public void doInBackground(URL... urls) {    // ...    SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(ctx);    // ...  }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5033775.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-15
下一篇 2022-11-15

发表评论

登录后才能评论

评论列表(0条)

保存