android如何使用bundle传递数组,Android:如何将2D Enum数组传递给Bundle?

博主在Android应用中遇到一个问题,他们正在尝试在两个活动之间传递一个2D枚举数组。目前的实现是将2D枚举数组转换为2D整数数组,然后通过Bundle传递,接收端再转换回1D Object数组和2D整数数组,最终还原为2D枚举数组。然而,尝试直接传递和接收2D枚举数组导致运行时异常。代码示例展示了转换和传递过程。
摘要由CSDN通过智能技术生成

目前我将2D Enum数组转换为2D int数组,然后将其传递给Bundle,并在另一端将其转换为1D Object数组,然后是2D int数组,最后返回到我的2D Enum数组。

有没有更好的方法来做到这一点?

我试图直接传递和获取二维数组枚举后,但我得到一个RuntimeException当我尝试找回它。

这里是我的代码:

传递二维数组的软件包:

// Send the correct answer for shape arrangement

Intent intent = new Intent(getApplicationContext(), RecallScreen.class);

Bundle bundle = new Bundle();

// Convert mCorrectShapesArrangement (Shapes[][]) to an int[][].

int[][] correctShapesArrangementAsInts = new int[mCorrectShapesArrangement.length][mCorrectShapesArrangement[0].length];

for (int i = 0; i < mCorrectShapesArrangement.length; ++i)

for (int j = 0; j < mCorrectShapesArrangement[0].length; ++j)

correctShapesArrangementAsInts[i][j] = mCorrectShapesArrangement[i][j].ordinal();

// Pass int[] and int[][] to bundle.

bundle.putSerializable("correctArrangement", correctShapesArrangementAsInts);

intent.putExtras(bundle);

startActivityForResult(intent, RECALL_SCREEN_RESULT_CODE);

检索出束:

Bundle bundle = getIntent().getExtras();

// Get the int[][] that stores mCorrectShapesArrangement (Shapes[][]).

Object[] tempArr = (Object[]) bundle.getSerializable("correctArrangement");

int[][] correctShapesArrangementAsInts = new int[tempArr.length][tempArr.length];

for (int i = 0; i < tempArr.length; ++i)

{

int[] row = (int[]) tempArr[i];

for (int j = 0; j < row.length; ++j)

correctShapesArrangementAsInts[i][j] = row[j];

}

// Convert both back to Shapes[][].

mCorrectShapesArrangement = new Shapes[correctShapesArrangementAsInts.length][correctShapesArrangementAsInts[0].length];

for (int i = 0; i < correctShapesArrangementAsInts.length; ++i)

for (int j = 0; j < correctShapesArrangementAsInts[0].length; ++j)

mCorrectShapesArrangement[i][j] = Shapes.values()[correctShapesArrangementAsInts[i][j]];

在此先感谢!

2012-06-06

Felix

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值