3

我在将二维字符串数组从一个活动传递到另一个活动时遇到问题 我尝试了一些代码......但它们显示了一些错误

我的字符串数组是

String[][] commuterDetails=new String[2][5];

commuterDetails=
{
   { "a", "b","c", "d","e" },
   {"f", "g","h", "i","j" }
};

我尝试了一些代码

在第一个活动中

Intent summaryIntent = new Intent(this, Second.class);
Bundle b=new Bundle();
b.putSerializable("Array", commuterDetails);
summaryIntent.putExtras(b);
startActivity(summaryIntent);

在第二个活动

Bundle b = getIntent().getExtras();
String[][] list_array = (String[][])b.getSerializable("Array");

但它显示错误

Caused by: java.lang.ClassCastException: [Ljava.lang.Object;

我是android新手,请帮助我

4

2 回答 2

1

您可以定义一个自定义类,该类实现Parcelable并包含从 Parcel 读取和写入二维数组的逻辑。之后,将那个可打包的对象放入 Bundle 中进行运输。

更新

public class MyParcelable implements Parcelable{

public String[][] strings;

public String[][] getStrings() {
    return strings;
}

public void setStrings(String[][] strings) {
    this.strings = strings;
}

public MyParcelable() {
    strings = new String[1][1];
}

public MyParcelable(Parcel in) {
    strings = (String[][]) in.readSerializable();
}

@Override
public int describeContents() {
    return 0;
}

@Override
public void writeToParcel(Parcel dest, int flags) {
    dest.writeSerializable(strings);

}
public static final Parcelable.Creator<MyParcelable> CREATOR = new Parcelable.Creator<MyParcelable>() {

    @Override
    public MyParcelable createFromParcel(Parcel in) {
        return new MyParcelable(in);
    }

    @Override
    public MyParcelable[] newArray(int size) {
        return new MyParcelable[size];
    }
};
}
于 2013-02-28T10:38:40.257 回答
0

使您的 commuterDetails静态并像这样访问其他活动

FirstActivity.commuterDetails[][]

于 2013-02-28T10:36:18.687 回答