0

我正在使用 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];

我的代码有什么问题?我希望我没有问重复的问题,但到目前为止我还没有在这里找到解决方案。

4

1 回答 1

3

您正在发送schuffledNumbers并尝试阅读shuffledNumbers。请注意第一个中的额外c

使用常量来防止这种情况是一种很好的做法。所以你可以定义:

public static final String EXTRA_SHUFFLED_NUMBERS = "shuffled_numbers";

并在两个地方都使用这样的常量。

于 2012-06-21T18:05:50.687 回答