I am new to android and I am trying to build an app that reads speech signal values using a thread and display the value on the ui using handler. Recording thread that reads the values and sends message to handler.Handler for the recording thread message
I actually need the textview to update every 3 seconds , but the value of the variable value is getting updated very fast. In the code containing recording thread, I want to send the message after every 3 seconds(as can be seen, the while loop runs for 3 seconds). but I am unable to do that . Please help!!