0

私は、多くのアクティビティが別のアクティビティを開くアプリを持っています。このアプリでは、開いたボタンの後にいくつかのものが設定されています(画像、タグなど)。このアクティビティが閉じられた後、値「1」の文字列が返されます。 int に変換され、スコアの設定に使用されます。

返すアクティビティでは、これがあります:

Intent i;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.vie);
        img = (ImageView) findViewById(R.id.img);
        et = (EditText) findViewById(R.id.et);
        btn = (Button) findViewById(R.id.btnCheck);
        txt = (TextView) findViewById(R.id.txt);

        win_sound = MediaPlayer.create(Vie.this, R.raw.win);
        wrong_sound= MediaPlayer.create(Vie.this, R.raw.wrong);

        i = getIntent();
        Bitmap back = i.getParcelableExtra("back");
        Drawable b = new BitmapDrawable(getResources(), back);
        img.setImageDrawable(b);
        String tag = i.getStringExtra("tag");
        Object tag2 = (Object) tag;
        img.setTag(tag2);
        btn.setOnClickListener(this);

    }

    @Override
    public void onClick(View arg0) {
        // TODO Auto-generated method stub
        boolean mb = check(et, img);
        if (mb) {
            // Sunet toast thread
            txt.setText(title(img));
            win_sound.start();
            i.putExtra("score", "1");
            setResult(RESULT_OK, i);

            Thread t = new Thread() {

                @Override
                public void run() {
                    // TODO Auto-generated method stub
                    super.run();
                    try {
                        sleep(win_sound.getDuration());

                    } catch (Exception e) {
                        // TODO: handle exception
                        e.printStackTrace();
                    } finally {
                        finish();
                    }

                }

            };

            t.start();

        }

        if (!mb) {
            // sunet toast thread
            wrong_sound.start();
            Toast t = Toast.makeText(getApplicationContext(),"Wrong answer! Please check if you have spelled corectly the name of the team!",Toast.LENGTH_LONG);
            t.show();
        }
    }

そして OnActivityResult メソッド:

int a = 0
@Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        // TODO Auto-generated method stub
        super.onActivityResult(requestCode, resultCode, data);
        if (data.getExtras().containsKey("score")) {
            a +=Integer.valueOf(data.getStringExtra("score")); 
        }

    }

そして、textView は以下を表示するように設定されています。

txtScore.setText(a);

しかし、これは私にエラーを与えます、これは私のLogCatです:

06-29 15:28:25.312: E/AndroidRuntime(981): Caused by: android.content.res.Resources$NotFoundException: String resource ID #0x0
06-29 15:28:25.312: E/AndroidRuntime(981):  at android.content.res.Resources.getText(Resources.java:230)
06-29 15:28:25.312: E/AndroidRuntime(981):  at android.widget.TextView.setText(TextView.java:3769)
06-29 15:28:25.312: E/AndroidRuntime(981):  at com.RandDdev.uclquiz.Teams.onCreate(Teams.java:61)

私たちを手伝ってくれますか?

4

3 に答える 3

2
txtScore.setText(a); 

は ですInteger。そのため、Android はその ID を持つ R 内の文字列を探しています。

で変わる

txtScore.setText(String.valueOf(a));

setText(Charsequence)の代わりにsetText(int)を使用しています

于 2013-06-29T15:41:01.393 に答える
0

txtScore.setText(""+a); を試してください。int を TextView に直接設定することはできません

于 2013-06-29T15:40:07.670 に答える