2

我想将三个字符串从一个活动传递到另一个活动,但它不起作用。我已经尝试了很多,但我就是不明白为什么它不起作用这是第一个活动

第一项活动

                          String[] g = new String[3];
                  g[0] = "information 1";
                g[1] = "information 2";
                g[2] = "information 3";
                Intent intent = new Intent(Entradas.this,Informacoes.class);
                Bundle bundle = new Bundle();
                bundle.putStringArray("some string",g);
                intent.putExtras(bundle);
                startActivity(intent);

第二次活动

        Bundle bundle = getIntent().getExtras();
    String[] abc = bundle.getStringArray("some string");
    TextView txtInfo= (TextView) findViewById(R.id.textViewInfo);
    txtInfo.setText(abc[0]);
    TextView txtNome= (TextView) findViewById(R.id.textViewNome);
    txtNome.setText(abc[1]);
    TextView txtPreco= (TextView) findViewById(R.id.textViewPreco);
    txtPreco.setText(abc[2]);

它只是不起作用,有什么想法可以解决这个问题吗?

4

1 回答 1

1

您有 3 个元素,但为 2 个元素分配了空间。尝试先解决这个问题?

于 2012-11-10T16:23:33.510 回答