我有按钮 Play/Stop ,一个按钮通过播放或不改变他的资源,但是当我转到其他片段(活动)并使用 Play/Stop 按钮返回片段时,正在播放音乐但资源是默认的。
如果我按下按钮,它会停止服务,这没关系,唯一的问题是 ImageResource 更改。
我的代码:
int button_status = 1;
.... other code ...
public void onClick(View v) {
if (button_status == 1){
button_status = 0;
buttonPlayStop.setImageResource(R.drawable.pause);
getActivity().startService(new Intent(getActivity(), Service.class));
}else{
button_status = 1;
buttonPlayStop.setImageResource(R.drawable.play);
getActivity().stopService(new Intent(getActivity(), Service.class));
}
}
有任何想法吗 ?