blob: 7887e49b32137d025693f85b8f25993f576b75fe [file] [log] [blame]
Mark Wei479505d2013-03-21 06:04:46 -07001<?xml version="1.0" encoding="utf-8"?>
2
Mark Wei81aea352013-07-09 16:00:00 -07003<!-- The height is set programmatically set in CIVC -->
Mark Wei479505d2013-03-21 06:04:46 -07004<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
5 android:id="@+id/attachment_previews"
6 android:layout_width="match_parent"
7 android:layout_height="wrap_content"
8 android:layout_marginTop="@dimen/attachment_preview_margin_top"
9 android:layout_marginLeft="@dimen/attachment_preview_margin_side"
10 android:layout_marginRight="@dimen/attachment_preview_margin_side"
11 android:visibility="gone" >
Mark Wei81aea352013-07-09 16:00:00 -070012 <!-- Use dips for textSize since we want the badge to be a fixed size. -->
Mark Wei479505d2013-03-21 06:04:46 -070013 <TextView
14 android:id="@+id/ap_overflow"
15 android:layout_width="@dimen/ap_overflow_count_diameter"
16 android:layout_height="@dimen/ap_overflow_count_diameter"
17 android:layout_marginRight="@dimen/ap_margin_side"
18 android:layout_marginBottom="@dimen/ap_margin_side"
19 android:layout_gravity="bottom|right"
20 android:includeFontPadding="false"
21 android:textStyle="bold"
Mark Wei81aea352013-07-09 16:00:00 -070022 android:textSize="10dp"/>
23 <ImageView
24 android:id="@+id/ap_placeholder"
25 android:layout_width="wrap_content"
26 android:layout_height="wrap_content"
27 android:layout_gravity="center"
28 android:src="@drawable/ic_attachment_load" />
Mark Wei479505d2013-03-21 06:04:46 -070029 <ImageView
30 android:id="@+id/ap_progress_bar"
31 android:layout_width="wrap_content"
32 android:layout_height="wrap_content"
33 android:layout_gravity="center"
Mark Wei81aea352013-07-09 16:00:00 -070034 android:src="@drawable/ic_spinner_inner_holo" />
Mark Wei479505d2013-03-21 06:04:46 -070035</FrameLayout>