Fix the displaying of names in ViewContactActivity.

The cursor over the data items wasn't being reset to the before
first position before being iterated over to retrieve the data
rows.
diff --git a/src/com/android/contacts/ViewContactActivity.java b/src/com/android/contacts/ViewContactActivity.java
index 8126ae5..789e7a7 100644
--- a/src/com/android/contacts/ViewContactActivity.java
+++ b/src/com/android/contacts/ViewContactActivity.java
@@ -702,6 +702,7 @@
         // Build up method entries
         if (mUri != null) {
             Bitmap photoBitmap = null;
+            aggCursor.moveToPosition(-1);
             while (aggCursor.moveToNext()) {
                 final String mimetype = aggCursor.getString(DATA_MIMETYPE_COLUMN);