如何更改图像按钮而不是其他活动?

时间:2015-03-16 22:43:31

标签: java android

我有onClick方法,当你点击onclick更改MainActivitiy.class中的ImageButton

这是我的onClick:

    public void onClick8 (View view) {
        //Here should go command to change ImageButton in MainActivity.class
        Intent myIntent = new Intent(view.getContext(), MainActivity.class);
        startActivity(myIntent);
        finish();
        MediaPlayer mediaPlayer = MediaPlayer.create(zem13.this, R.raw.song);
        mediaPlayer.start();

  }

如果可以,请在MainActivity.class和其他活动中显示代码。

2 个答案:

答案 0 :(得分:0)

使用字符串引用并设置其他活动的字符串,当您返回活动时,可以使用if

更改图像

答案 1 :(得分:0)

您无法直接执行此操作 use可以在您的活动中使用myIntent.putExtra("TAG",changes)方法,在MainActivity中使用changes=getIntent.getExtra("TAG") 另一种方式是使用SharedPreferences
使用BroadcastReceiver是另一种解决方案