Questions tagged [contactpicker]

51 questions
0
votes
1 answer

How to auto sync Contact with UWP app?

I'm using ContactPicker to pick some contacts and save in my app via SQLite. 1. How to sync with my app when have change Name or Phone Number in People app of phone? 2. Or you have a best way to pick contacts, save and auto sync with app,…
0
votes
1 answer

Can we add button inside contact picker intent?

I want to use the contact picker intent in my app. I also want to have functionality of adding a contact from the same intent. I searched for if we can combine the contact picker intent and the insert intent but it seems not possible. So Can we add…
user6265109
0
votes
1 answer

How to show Only if phone Number is present using contactpicker

I am using Contact picker library for selecting multiple contacts but if a contact doesn't contain any number and if it is selected then it is showing some null pointer exception in the edit text field. How to remove that message and also how to…
0
votes
1 answer

Uwp get holders phone number as ContactInformation

We have the Windows.ApplicationModel.Contacts.ContactPicker to pick an contact from our contact list. var contactPicker = new ContactPicker(); contactPicker.DesiredFieldsWithContactFieldType.Add(ContactFieldType.PhoneNumber); Contact contact =…
soydachi
  • 851
  • 1
  • 9
  • 24
0
votes
0 answers

Mutiple Contact Picker not working in Android api level less than 17

I have a code to read the contacts from the inbuilt phone contacts and it displays all the contacts in a list view in my app.The user can select multiple contacts and display them in another activity. This code works fine in Android API level 18 and…
0
votes
1 answer

Swift Contact Picker Detail View

I have been working on this for many days with no luck! I would like to use Contact Picker to go directly to the detail page of a contact so that I can choose a mobile number or email address from the list. I have managed to use predicate to fetch…
user3740845
  • 57
  • 2
  • 4
0
votes
0 answers

Handle lifecycle event of Contact Picker activity in Android

My application starts contact picker Intent intent = new Intent(Intent.ACTION_PICK, ContactsContract.Contacts.CONTENT_URI); startActivityForResult(intent, PICK_CONTACT_REQUEST); I need to be able to detect if the Contact Picker loses focus…
0
votes
1 answer

Pick Contacts onClick when Button is pressed Android

Im having issues with my App. What i'd like to do is when my Button is pressed to open my Phone Contatcs and display them to my TextViews. I have issues when i perform the Button Press i think. At least LogCat is saying me some Error with my Button…
0
votes
1 answer

"The device is not ready (Exception from HRESULT: 0x80070015)" error when using a ContactPicker in a HelloWorld Windows Phone 8.1 applcation

I'm trying to create a small WP 8.1 application that displays a ContactPicker as it starts. I'm using Visual Studio Community 2015 on Windows 10 Preview build 10532 to create the application. So, as soon as I create a Windows Phone Blank App, I add…
robcsi
  • 264
  • 3
  • 17
0
votes
1 answer

Replacement for ContactPicker.PickMultipleContactsAsync

The documentation for ContactPicker.PickSingleContactAsync and ContactPicker.PickMultipleContactsAsync states that they "may" not be supported post Windows 8.1 or Windows Phone 8.1 And supported they are not. Not just deprecated but obsoleted in…
Peter Wone
  • 17,965
  • 12
  • 82
  • 134
0
votes
0 answers

Android phone number dial or pick from contacts

I want the user to be able to send an sms by either dialing a phone number himself or picking it up from a contact list. I know that I could easily achieve it, querying all the contacts and providing a TextView to either filtering the contacts or…
0
votes
1 answer

ContactPicker's pickContactAsync is not working properly

i'developing an application that has feature to select a contact from Contacts list. Problem is, when i run application in "DEBUG" mode and debug my ContactPicker code, the picker runs quite thouroughly. but when i run application in the device…
Mayur Paghdal
  • 275
  • 1
  • 2
  • 12
0
votes
2 answers

Windows Phone ContactPicker won't await properly

Although this has been posted before on StackOverflow but i think none of those reflect my issue and none of those solutions work for me either. So i'm developing a Windows Phone app and my workflow is a bit like this: App starts ContactPicker…
0
votes
1 answer

Android contact picker returning nulll (resultCode == 0)

I'm new to Android and I'm trying to attach a contact picker to a form. This "contact picker code" works well when I test it with other forms but with this form, the resultCode = RESULT_CANCELED. I have checked other examples, but it doesn't work…
Fam1
  • 3
  • 1
0
votes
1 answer

Android multiple contacts from groups and images

I want to do the following. Pick up three to five contacts out of a special group of contacts or all contacts. In the list it would be nice to show the contact image. The selected contacts should have the following information (contact-id, first…
Frank J.
  • 3
  • 1
  • 4