摘要:
在Activity上有两个ImageButton,分别控制播放/暂停、停止。@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); start = (ImageButton) findViewById(R.id.play); stop = (ImageButton) findViewById(R.id.stop); start.setOnClickListener(this); stop.setOn 阅读全文