Introduction - If you have any usage issues, please Google them yourself
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState)
setContentView(R.layout.main)
recordButton = (Button) this.findViewById(R.id.Button01)
stopButton = (Button) this.findViewById(R.id.Button02)
playButton=(Button)this.findViewById(R.id.Button03)
stopPlay=(Button)this.findViewById(R.id.Button04)
// 录音按钮点击事件
recordButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
File file = new File("/sdcard/"+ "CC"+ new DateFormat().format("ccccMMdd_HHmmss",Calendar.getInstance(Locale.CHINA))+ ".amr")
Toast.makeText(getApplicationContext(), "正在录音,录音文件在"+file.getAbsolutePath(), Toast.LENGTH_LONG)
.show()