Bringing the contacts up to date

This commit is contained in:
Joe Bowser 2009-12-01 11:55:15 -08:00
parent 67a0b838ff
commit 20aed7efe6

View File

@ -10,6 +10,7 @@ import android.net.Uri;
import android.database.Cursor; import android.database.Cursor;
import android.database.sqlite.SQLiteException; import android.database.sqlite.SQLiteException;
@SuppressWarnings("deprecation")
public class ContactManager { public class ContactManager {
public class ContactTriplet public class ContactTriplet
@ -162,20 +163,20 @@ public class ContactManager {
if (all) if (all)
mView.loadUrl("javascript:navigator.ContactManager.droidAddContact('" + name + "','" + phoneNumber + "','" + email +"')"); mView.loadUrl("javascript:navigator.ContactManager.droidAddContact('" + name + "','" + phoneNumber + "','" + email +"')");
else else
mView.loadUrl("javascript:navigator.AddressBook.droidFoundContact('" + name + "','" + phoneNumber + "','" + email +"')"); mView.loadUrl("javascript:navigator.Contacts.droidFoundContact('" + name + "','" + phoneNumber + "','" + email +"')");
} while (cur.moveToNext()); } while (cur.moveToNext());
if (all) if (all)
mView.loadUrl("javascript:navigator.ContactManager.droidDone()"); mView.loadUrl("javascript:navigator.ContactManager.droidDone()");
else else
mView.loadUrl("javascript:navigator.AddressBook.droidDoneContacts();"); mView.loadUrl("javascript:navigator.Contacts.droidDoneContacts();");
} }
else else
{ {
if(all) if(all)
mView.loadUrl("javascript:navigator.ContactManager.fail()"); mView.loadUrl("javascript:navigator.ContactManager.fail()");
else else
mView.loadUrl("javascript:navigator.AddressBook.fail('None found!')"); mView.loadUrl("javascript:navigator.Contacts.fail('None found!')");
} }
} }
@ -198,10 +199,10 @@ public class ContactManager {
if(data != null) if(data != null)
{ {
data.email = email; data.email = email;
mView.loadUrl("javascript:navigator.AddressBook.droidFoundContact('" + data.name + "','" + data.phone + "','" + data.email +"')"); mView.loadUrl("javascript:navigator.Contacts.droidFoundContact('" + data.name + "','" + data.phone + "','" + data.email +"')");
} }
} while (cur.moveToNext()); } while (cur.moveToNext());
mView.loadUrl("javascript:navigator.AddressBook.droidDoneContacts();"); mView.loadUrl("javascript:navigator.Contacts.droidDoneContacts();");
} }
} }