如何将两个方向数组从一个活动传递到另一个活动



我有一个问题,通过我的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);

第二个活动

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

但是显示错误

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

我是android新手,请帮助我

您可以定义一个实现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];
    }
};
}

将您的comterdetails 设置为static并在其他活动中访问

FirstActivity.commuterDetails[][]

相关内容

  • 没有找到相关文章

最新更新