music selection ui layout changed

This commit is contained in:
2017-05-03 18:28:55 -05:00
parent b4c92a4477
commit f57602788e
4 changed files with 80 additions and 20 deletions

View File

@@ -15,9 +15,11 @@ public class WavInfo {
private DataInputStream readStream;
private String fileName;
private File file;
public WavInfo(File file) throws InvalidParameterException {
try {
fileName = file.getName();
this.file = file;
audioFile = new FileInputStream(file);
initDataStream();
getHeaderInfo();
@@ -124,4 +126,8 @@ public class WavInfo {
public String getFileName() {
return fileName;
}
public File getFile() {
return file;
}
}