在我的App中,我的数据在我的Parcelable对象中没有正确写入。我将Parcelable对象列表从一个活动传递到另一个活动,但数据写入不正确,它被覆盖。 例如。我的列表中只有一个项目,我添加“price = 10”我的列表,当我尝试在另一个活动中读取此列表时,我得到正确的价格,即“10”但是当我尝试添加一个项目时这个List,假设“price = 20”,当我尝试阅读这个List时,我得到2个物品,价格= 20,价格= 20。在这种情况下,我的数据会被覆盖。
继承我的代码。
可分割的对象:
package com.example.model;
import java.util.ArrayList;
import java.util.List;
import android.os.Parcel;
import android.os.Parcelable;
public class Model_MiscBarcode implements Parcelable {
public String fixedPrice, price, quantity, string_sale_return, barcode;
public Model_MiscBarcode() {
fixedPrice = "";
price = "";
quantity = "";
string_sale_return = "";
barcode = "";
}
public Model_MiscBarcode(Parcel in) {
fixedPrice = in.readString();
price = in.readString();
quantity = in.readString();
string_sale_return = in.readString();
barcode = in.readString();
}
public String getString_sale_return() {
return string_sale_return;
}
public void setString_sale_return(String string_sale_return) {
this.string_sale_return = string_sale_return;
}
public String getBarcode() {
return barcode;
}
public void setBarcode(String barcode) {
this.barcode = barcode;
}
public String getQuantity() {
return quantity;
}
public void setQuantity(String quantity) {
this.quantity = quantity;
}
public String getPrice() {
return price;
}
public void setPrice(String price) {
this.price = price;
}
public String getFixedPrice() {
return fixedPrice;
}
public void setFixedPrice(String fixedPrice) {
this.fixedPrice = fixedPrice;
}
@Override
public int describeContents() {
// TODO Auto-generated method stub
return 0;
}
@Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeString(fixedPrice);
dest.writeString(price);
dest.writeString(quantity);
dest.writeString(string_sale_return);
dest.writeString(barcode);
}
public static final Parcelable.Creator<Model_MiscBarcode> CREATOR = new
Parcelable.Creator<Model_MiscBarcode>() {
public Model_MiscBarcode createFromParcel(Parcel in) {
return new Model_MiscBarcode(in);
}
public Model_MiscBarcode[] newArray(int size) {
return new Model_MiscBarcode[size];
}
};
}
这是我的代码,我正在尝试在列表中添加数据:
private void insertNewBarcode(String barcode) {
if(data.getBarcode() == null ||
data.getBarcode().equalsIgnoreCase("")){
data.setBarcode("000000000000");
}else{
data.setBarcode(barcode);
}
data.setQuantity(Integer.toString(1));
data.setString_sale_return(value);
double price = Double.parseDouble(data.getPrice());
double quantity = Double.parseDouble(data.getQuantity());
String pAmount = decimalFormat.format(price);
pAmount = String.format(pAmount);
data.setPrice(pAmount);
data.setFixedPrice(String.valueOf(new DecimalFormat("0.00")
.format(price)));
miscBarcodeList.setBarcode(data.getBarcode());
miscBarcodeList.setFixedPrice(data.getFixedPrice());
miscBarcodeList.setPrice(data.getPrice());
miscBarcodeList.setQuantity(data.getQuantity());
miscBarcodeList.setString_sale_return(data.getString_sale_return());
miscList.add(miscBarcodeList);
}
答案 0 :(得分:2)
根据您的代码,只有一个 miscBarcodeList
的实例。你只需反复覆盖它。尝试在 miscBarcodeList
方法中初始化 insertNewBarcode()
。