如何将活动上下文放入非活动类android?

时间:2014-03-13 06:48:44

标签: java android android-context

我有一个Activity类,我将一些信息传递给一个帮助类(非活动)类。在帮助器类中,我想使用getSharedPreferences()。但我无法使用它,因为它需要活动上下文。

这是我的代码:

  class myActivity extends Activity
    {
    @Override
        protected void onCreate(Bundle savedInstanceState) 
        {

            // TODO Auto-generated method stub
            super.onCreate(savedInstanceState);
            setContentView(R.layout.home);


            Info = new Authenticate().execute(ContentString).get();
            ItemsStore.SetItems(Info);

        }

    }

class ItemsStore
{
  public void SetItems(Information info)
 {
  SharedPreferences  localSettings = mContext.getSharedPreferences("FileName", Context.MODE_PRIVATE);
            SharedPreferences.Editor editor = localSettings.edit();
            editor.putString("Url", info.Url);
            editor.putString("Email", info.Email);
 }
}

不知道如何实现这一目标?

4 个答案:

答案 0 :(得分:20)

不是创建内存泄漏(通过在类字段中保存活动上下文),您可以尝试此解决方案,因为共享首选项不需要活动上下文但是......任何上下文:)对于长生活对象,您应该使用ApplicationContext。

创建应用程序类:

public class MySuperAppApplication extends Application {
    private static Application instance;

    @Override
    public void onCreate() {
        super.onCreate();
        instance = this;
    }

    public static Context getContext() {
        return instance.getApplicationContext();
    }
}

在清单

注册
<application
    ...
    android:name=".MySuperAppApplication" >
    ...
</application>

然后你可以做这样的事情

public void persistItems(Information info) {
    Context context = MySuperAppApplication.getContext();
    SharedPreferences sharedPreferences = context.getSharedPreferences("urlPersistencePreferences", Context.MODE_PRIVATE);
    sharedPreferences.edit()
        .putString("Url", info.Url)
        .putString("Email", info.Email);
}

方法签名以这种方式看起来更好,因为它不需要外部上下文。这可以隐藏在某些界面下。您也可以轻松地使用它来进行依赖注入。

HTH

答案 1 :(得分:8)

试试这个:

class myActivity extends Activity
{
    @Override
    protected void onCreate(Bundle savedInstanceState) 
    {

        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.home);


        Info = new Authenticate().execute(ContentString).get();
        ItemsStore.SetItems(Info, getApplicationContext());

    }

}

class ItemsStore
{
   public void SetItems(Information info, Context mContext)
   {
            SharedPreferences  localSettings = mContext.getSharedPreferences("FileName",
            Context.MODE_PRIVATE);
            SharedPreferences.Editor editor = localSettings.edit();
            editor.putString("Url", info.Url);
            editor.putString("Email", info.Email);
   }
}

答案 2 :(得分:5)

您需要将上下文传递给非活动类

的构造函数
ItemsStore itemstore = new ItemStore(myActivity.this);
itemstore.SetItems(Info);

然后

Context mContext;
public ItemsStore (Context context)
{
       mContext =context;
}

现在mContext可以用作活动上下文。

注意:不要保留对上下文活动的长期引用(对活动的引用应该与活动本身具有相同的生命周期)

答案 3 :(得分:0)

在您的活动中编写公共功能。在Activity类中创建辅助类的实例时,在构造函数中传递activity的上下文。

然后从您的助手类中,使用活动上下文,在活动类中调用公共函数。

相关问题