summaryrefslogtreecommitdiffstats
path: root/res/layout/conversation_attachment_previews.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/conversation_attachment_previews.xml')
-rw-r--r--res/layout/conversation_attachment_previews.xml14
1 files changed, 10 insertions, 4 deletions
diff --git a/res/layout/conversation_attachment_previews.xml b/res/layout/conversation_attachment_previews.xml
index eb7ce2591..7887e49b3 100644
--- a/res/layout/conversation_attachment_previews.xml
+++ b/res/layout/conversation_attachment_previews.xml
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
+<!-- The height is set programmatically set in CIVC -->
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/attachment_previews"
android:layout_width="match_parent"
@@ -8,7 +9,7 @@
android:layout_marginLeft="@dimen/attachment_preview_margin_side"
android:layout_marginRight="@dimen/attachment_preview_margin_side"
android:visibility="gone" >
- <!--todo:markwei get font color, typeface, and size from channah-->
+ <!-- Use dips for textSize since we want the badge to be a fixed size. -->
<TextView
android:id="@+id/ap_overflow"
android:layout_width="@dimen/ap_overflow_count_diameter"
@@ -18,12 +19,17 @@
android:layout_gravity="bottom|right"
android:includeFontPadding="false"
android:textStyle="bold"
- android:textSize="12sp"/>
- <!--todo:markwei get actual spinner asset from channah-->
+ android:textSize="10dp"/>
+ <ImageView
+ android:id="@+id/ap_placeholder"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center"
+ android:src="@drawable/ic_attachment_load" />
<ImageView
android:id="@+id/ap_progress_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
- android:src="@drawable/spinner_holo" />
+ android:src="@drawable/ic_spinner_inner_holo" />
</FrameLayout> \ No newline at end of file