summaryrefslogtreecommitdiffstats
path: root/src/com/android/mail/browse/MessageFooterView.java
diff options
context:
space:
mode:
authorPaul Westbrook <pwestbro@google.com>2012-09-19 16:31:23 -0700
committerPaul Westbrook <pwestbro@google.com>2012-09-19 16:31:23 -0700
commit4dabcc9f74ea5f75467f6f581d8ef7cd65c2f06e (patch)
tree6e474a77227e5a9ce4682f4539c895c63372aa1f /src/com/android/mail/browse/MessageFooterView.java
parent692e441b1d41b9a25b9823f59d0591917593e4aa (diff)
downloadandroid_packages_apps_UnifiedEmail-4dabcc9f74ea5f75467f6f581d8ef7cd65c2f06e.tar.gz
android_packages_apps_UnifiedEmail-4dabcc9f74ea5f75467f6f581d8ef7cd65c2f06e.tar.bz2
android_packages_apps_UnifiedEmail-4dabcc9f74ea5f75467f6f581d8ef7cd65c2f06e.zip
Show progress attachment bar
Show download progress in the MessageAttachmentBar Bug: 7194891 Change-Id: I847cfa562d5ecb48a953a7a23f8b3eed7d442251
Diffstat (limited to 'src/com/android/mail/browse/MessageFooterView.java')
-rw-r--r--src/com/android/mail/browse/MessageFooterView.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/mail/browse/MessageFooterView.java b/src/com/android/mail/browse/MessageFooterView.java
index 8ec19d062..4fed15fd5 100644
--- a/src/com/android/mail/browse/MessageFooterView.java
+++ b/src/com/android/mail/browse/MessageFooterView.java
@@ -158,8 +158,8 @@ public class MessageFooterView extends LinearLayout implements DetachListener,
// filter the attachments into tiled and non-tiled
final int maxSize = attachments.size();
- List<Attachment> tiledAttachments = new ArrayList<Attachment>(maxSize);
- List<Attachment> barAttachments = new ArrayList<Attachment>(maxSize);
+ final List<Attachment> tiledAttachments = new ArrayList<Attachment>(maxSize);
+ final List<Attachment> barAttachments = new ArrayList<Attachment>(maxSize);
for (Attachment attachment : attachments) {
if (AttachmentTile.isTiledAttachment(attachment)) {