fix single contact selection for contacts with multiple phones

// FREEBIE
This commit is contained in:
Jake McGinty
2014-02-21 17:11:52 -08:00
parent 7beab36c6a
commit b855f8a163
2 changed files with 18 additions and 31 deletions

View File

@@ -367,6 +367,13 @@ public class ContactAccessor {
this.numbers = new LinkedList<NumberData>();
}
public ContactData(long id, String name, List<NumberData> numbers) {
this.id = id;
this.name = name;
this.numbers = numbers;
}
public ContactData(Parcel in) {
id = in.readLong();
name = in.readString();