从不同的应用程序访问共享首选项文件



我正在尝试访问共享首选项文件,该文件是在不同的应用程序中创建的。我遵循了一些教程,但没有工作。这是我的情况:

App1 (com.example.remoteservice)

SharedPreferences configuracion2;
                configuracion2 = getSharedPreferences("telo", Context.MODE_WORLD_READABLE);
                Editor editor = configuracion2.edit();
                editor.putFloat("x21", Float.parseFloat(x21.getText().toString()));
                editor.commit();

App2 (com.example.grafica)

    Context con = createPackageContext("com.example.remoteservice", MODE_WORLD_WRITEABLE);
            SharedPreferences pref = con.getSharedPreferences(
                    "telo",MODE_WORLD_READABLE);
            ancho = pref.getFloat("x21", 0);
Log.i("smash", "ancho" + String.valueOf(ancho));

并返回 0,因为不存在"telo"。 为什么??

谢谢

App1 (com.example.remoteservice)

共享首选项配置2; configuracion2 = getSharedPreferences("telo", Context.MODE_WORLD_READABLE);

            Editor editor = configuracion2.edit();
            editor.putFloat("x21", Float.parseFloat(x21.getText().toString()));
            editor.commit();

App2 (com.example.grafica)

Context con = createPackageContext("com.example.remoteservice", Context.CONTEXT_IGNORE_SECURITY); 
        SharedPreferences pref = con.getSharedPreferences(
                "telo",MODE_WORLD_READABLE);
        ancho = pref.getFloat("x21", 0);

Log.i("smash", "ancho" + String.valueOf(ancho));

这应该可以解决它。也不要在此调用之前调用当前上下文的 getSharedPreferences()。

相关内容

  • 没有找到相关文章

最新更新