3

あるアクティビティから別のアクティビティに2D 文字列配列を渡す際に問題が発生しました 。いくつかのコードを試しましたが、いくつかのエラーが表示されます

私の文字列配列は次のとおりです。

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);

2回目の活動で

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

しかし、それはエラーを示しています

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

私はアンドロイドが初めてです、助けてください

4

2 に答える 2

1

Parcelableパーセルとの間で 2 次元配列を読み書きするためのロジックを実装および含むカスタム クラスを定義できます。その後、その小包化可能なオブジェクトをバンドルに入れて輸送します。

アップデート

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 に答える