diff options
Diffstat (limited to 'res/layout/gallerypicker.xml')
-rw-r--r-- | res/layout/gallerypicker.xml | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/res/layout/gallerypicker.xml b/res/layout/gallerypicker.xml index fd6f40a..2227989 100644 --- a/res/layout/gallerypicker.xml +++ b/res/layout/gallerypicker.xml @@ -14,19 +14,14 @@ limitations under the License. --> -<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/root" +<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:background="#000000"> - - <GridView 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" /> - -</AbsoluteLayout> - + android:paddingTop="2dip" + android:numColumns="auto_fit" + android:columnWidth="148dp" + android:stretchMode="spacingWidthUniform" + android:drawSelectorOnTop="false" + android:cacheColorHint="#000000" + android:background="#000000"/> |