How to processing UI while looping?

84 Views Asked by At

I want process the UI element while lopping. This code is recoding streaming audio. But code have some issues. Application stop in while instruction. So, "Record Button" don't change. Also, Application can user actions.(button click, etc) I want that button is clickable and writing data to file same time. Following the code:

PlayerActivity.this.runOnUiThread(new Runnable() {
@Override
public void run() {
    btnStartStopRecord.setText(R.string.button_record_stop);
    try{
    conn = new("Streaming URL").openConnection();
    is = conn.getInputStream();
        outstream = new FileOutputStream(new File(dataDir, fileName).getAbsolutePath());

            int c;
    while((c = is.read()) != -1) {
         outstream.write(c);
    }
} catch(Exception e){
     e.printStackTrace();
     error(e.toString());
    }
 }
});
1

There are 1 best solutions below

1
On

The application freezes because you're executing expensive operations on the UI thread.

You need to use background thread.

See:

for reference.