0

カメラで写真を撮った後、ボタンのプロパティを変更しようとしています。

@Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        if (resultCode != RESULT_OK) return;

        Bitmap bitmap = utilities.decodeFile(path, 300);
        imgPicHolder.setImageBitmap(bitmap);
        //The pic is changing on the previous Activity, this works fine



        Button button = (Button)findViewById(R.id.btnChange);
         button.setText("NewText");
        //Here is the problem, when trying to change the button property from the previous      activity before taking the picture..



}
4

1 に答える 1

1

私がすることは、これStringを からviaおよび inActivity2に渡し、これを使用してこれを取得し、それを のテキストとして設定することですActivity1Intent.putExtra()Activity1getIntent().getStringExtra()stringButtonActivity1onResume()

于 2012-11-29T11:32:02.660 に答える