我正在使用 Intents 将数组从一个 Activity 传递到 Android 中的另一个。这是一类中的代码。
Button los = (Button) findViewById(R.id.starten);
int[] a = new int[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49 };
shuffleArray(a);
final Intent intent;
intent = new Intent(this, melderfragen.class);
intent.putExtra("schuffledNumbers", a);
los.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
startActivity(intent);
}
});
这是接收类中的代码。
Intent intent = getIntent();
int[] questions = intent.getIntArrayExtra("shuffledNumbers");
到目前为止,它工作正常。但是,当我想从数组中访问一个数字时,应用程序会崩溃,如下所示:
int Fragenummer = questions[2];
我的代码有什么问题?我希望我没有问重复的问题,但到目前为止我还没有在这里找到解决方案。