когда я загружаю файл, я хочу синхронизировать прогрессбар с этим но нет, мой код:
Thread thread = new Thread() {
public void run() {
try {
while ( (bufferLength = inputStream.read(buffer)) > 0 ) {
//add the data in the buffer to the file in the file output stream (the file on the sd card
fileOutput.write(buffer, 0, bufferLength);
//add up the size so we know how much is downloaded
downloadedSize += bufferLength;
pbar.setProgress((downloadedSize/totalSize)*100);
pbar.refreshDrawableState();
Log.d("CURRENT:", "" + (downloadedSize/totalSize)*100);
}
} catch (Exception ex) {
}
}
};
thread.start();
Также мой файл журнала не обновляется. Любая помощь, пожалуйста ....