to have more control over the upload process, you could split your files into smaller blocks, upload the single blocks, show the progress based on the uploaded blocks and commit the upload as soon as all blocks are transfered successfully.
You can even upload multiple blocks at the same time, pause / resume the upload within 7 days or retry failed block-uploads.
This is on the one hand more coding, but on the other hand more control.
As an entry point, here is some sample code in C# since I'm not familiar with Java for Android:
CloudBlockBlob blob = cloudBlobContainer.GetBlockBlobReference(Path.GetFileName(fileName));
int blockSize = 256 * 1024;
using (FileStream fileStream =
new FileStream(fileName, FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
{
long fileSize = fileStream.Length;
int blockCount = (int)((float)fileSize / (float)blockSize) + 1;
List<string> blockIDs = new List<string>();
int blockNumber = 0;
try
{
int bytesRead = 0;
long bytesLeft = fileSize;
while (bytesLeft > 0)
{
blockNumber++;
int bytesToRead;
if (bytesLeft >= blockSize)
{
bytesToRead = blockSize;
}
else
{
bytesToRead = (int)bytesLeft;
}
string blockId =
Convert.ToBase64String(ASCIIEncoding.ASCII.GetBytes(string.Format("BlockId{0}",
blockNumber.ToString("0000000"))));
blockIDs.Add(blockId);
byte[] bytes = new byte[bytesToRead];
fileStream.Read(bytes, 0, bytesToRead);
string blockHash = GetMD5HashFromStream(bytes);
blob.PutBlock(blockId, new MemoryStream(bytes), blockHash);
bytesRead += bytesToRead;
bytesLeft -= bytesToRead;
}
blob.PutBlockList(blockIDs);
}
catch (Exception ex)
{
System.Diagnostics.Debug.Print("Exception thrown = {0}", ex);
}
}