Skip to content Skip to sidebar Skip to footer

Android Store Recorded Audio Using Input Text?

I have an app that records and stores the audio on the sdcard. It records and saves it in the right place, but saves it as android.widget.EditText@random number. I was using an E

Solution 1:

android.widget.EditText@random number indicates that your getInput is a EditText, So to get its text you need to call its getText() Method, like below,

String filename = getInput.getText().toString(); 

Post a Comment for "Android Store Recorded Audio Using Input Text?"