summaryrefslogtreecommitdiffstats
path: root/res/layout/gallerypicker.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/gallerypicker.xml')
-rw-r--r--res/layout/gallerypicker.xml54
1 files changed, 44 insertions, 10 deletions
diff --git a/res/layout/gallerypicker.xml b/res/layout/gallerypicker.xml
index 2227989..4bc7789 100644
--- a/res/layout/gallerypicker.xml
+++ b/res/layout/gallerypicker.xml
@@ -14,14 +14,48 @@
limitations under the License.
-->
-<GridView xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/albums"
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/root"
android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:paddingTop="2dip"
- android:numColumns="auto_fit"
- android:columnWidth="148dp"
- android:stretchMode="spacingWidthUniform"
- android:drawSelectorOnTop="false"
- android:cacheColorHint="#000000"
- android:background="#000000"/>
+ android:layout_height="fill_parent">
+ <GridView xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/albums"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:paddingTop="2dip"
+ android:numColumns="auto_fit"
+ android:columnWidth="148dp"
+ android:stretchMode="spacingWidthUniform"
+ android:drawSelectorOnTop="false"
+ android:cacheColorHint="#000000"
+ android:background="#000000"/>
+
+ <RelativeLayout android:id="@+id/no_images"
+ android:visibility="gone"
+ android:orientation="vertical"
+ android:layout_centerInParent="true"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent">
+
+ <ImageView
+ android:id="@+id/no_pictures_image"
+ android:layout_centerInParent="true"
+ android:layout_gravity="center"
+ android:background="@drawable/ic_gallery_empty2"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ />
+
+ <TextView
+ android:layout_below="@id/no_pictures_image"
+ android:layout_centerHorizontal="true"
+ android:paddingTop="5dip"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center"
+ android:text="@string/image_gallery_NoImageView_text"
+ android:textColor="#FFBEBEBE"
+ android:textSize="18dip"
+ />
+ </RelativeLayout>
+
+</RelativeLayout>