我的项目开发平台是google API7。它可以运行以下2.2版本的设备,但是当我安装在2.3以上版本上时,我的文件无法保存在SD卡中
这是我的代码
class ButtonListener implements OnClickListener
{
public void onClick(View v)
{
if (v == startButton)
{
setTitle("Start Recording and transmitting the file");
bar.setMax(second);
updateBarHandler.post(updateThread);
startButton.setVisibility(View.GONE);
exitButton.setVisibility(View.GONE);
stopButton.setVisibility(View.GONE);
}
if (v == stopButton)
{
setTitle("Stop");
handler.removeCallbacks(updateThread);
recorderInstance.setRecording(false);
recorderInstance = null;
startButton.setVisibility(View.VISIBLE);
exitButton.setVisibility(View.VISIBLE);
}
if (v == exitButton)
{
Intent intent = new Intent();
intent.setClass(MyRecorder.this, User.class);
startActivity(intent);
MyRecorder.this.finish();
}
}
}