我将数据存储在我的应用程序类中

public class VApp extends Application {

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

public Double getGrandTotal() {
    return grandTotal;
}

public Double setGrandTotal(Double grandTotal) {
    this.grandTotal = grandTotal;
    return grandTotal;
}
public  Double grandTotal = 0.0;
}


我在其他活动中使用setGrandTotal()和getGrandTotal()方法来很好地存储数据,
我的问题是,当我关闭应用程序时,启动总数超过0.0,
我想在第二次打开应用程序时以总计存储数据。

最佳答案

public Double getGrandTotal() {
    if (grandTotal == 0) {
        SharedPreferences sharedPreferences = getSharedPreferences("config", Context.MODE_PRIVATE);
        String value = sharedPreferences.getString("grandTotal", "0");
        grandTotal = Double.valueOf(value);
    }
    return grandTotal;
}

public Double setGrandTotal(Double grandTotal) {
    this.grandTotal = grandTotal;
    SharedPreferences sharedPreferences = getSharedPreferences("config", Context.MODE_PRIVATE);
    sharedPreferences.edit().putString("grandTotal", String.valueOf(grandTotal)).apply();
    return grandTotal;
}

public Double grandTotal = 0.0;

关于android - 第二次打开应用程序时将数据存储在Application类中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36785563/

10-10 05:52