Questions tagged [phonebook]

A telephone directory, also known as a telephone book, telephone address book, phone book.

25 questions
5
votes
0 answers

Add Custom Contact row in Phonebook like Whatsapp

Basically what I need to achieve is very clear but I am having many doubts in my implementation. I went through R & D about this topic but didn't find satisfied answer. Hope you guys will understand me and help me further. So here is screen shot for…
MKP
  • 141
  • 1
  • 11
3
votes
1 answer

Intent not passed from contacts app

I am developing android app where I need to add custom row in particular contacts of my app.Till now I am able to add row in my contact but when I click on that row it does not open my application instead it show toast something like this: "No…
MKP
  • 141
  • 1
  • 11
2
votes
0 answers

block a contact in iOS

I started developing an app to block someone that already exists in the phonebook, I know the iPhone can do it by itself, but I need this ability in my App And also I know that I can block unknown senders programmatically But the problem is with…
Farrokh
  • 1,167
  • 1
  • 7
  • 18
2
votes
4 answers

Python text file into dictionary not working

So the file text, which I'm supposed to transfer to a dictionary for a phonebook, looks like this: Name1 Name2 Numbers Name3 Name4 Numbers2 and so on.. What I've tried: def read(): file1=open("file.txt","r") dict={} for line in…
Jaakkath
  • 65
  • 1
  • 8
1
vote
3 answers

My linked list is displaying garbage values after my insert function is applied

I'm trying to create a telephone directory and I'm having issues with my insert_beg function. the function's name itself explains what it is supposed to do pretty much. When I create a record using create_pd it works, and then I use the display…
ghadds
  • 13
  • 4
1
vote
2 answers

Basic option menu is failing - help needed

I am creating a basic phonebook program that can perform operations (add new, update, delete, lookup and exit). I have the first option as add entry and the second as delete entry. Every time the user completes an action, the option to select an…
1
vote
0 answers

Read mobile phone book using obex in c#

i have a OBEXConnect and OBEXRequest custom functions, i am not using library for it OBEXConnect function is as following private bool OBEXConnect() { //send client request byte[] ConnectPacket = new byte[7]; …
Naseem
  • 21
  • 3
1
vote
1 answer

How to get country code from Phone Book android

I am working on android application where I want to detect the country code from my phone book where by default country code is not added. For example: +971529090909, 00971529730000, 0529090909 In "+" and "00" state, I have country codes, but in…
Usman Khan
  • 3,739
  • 6
  • 41
  • 89
0
votes
0 answers

Unable to implement PBAP - Download and access Phonebook objects using Bluetooth Connectivity

I want to implement PBAP. i.e. I want to share contacts and perform certain operations using Bluetooth connectivity. Specifically, I want to implement the client side app ( car kit ). Since, server side is already served by an android device. I went…
0
votes
0 answers

When I run the program I get (Exception in thread "main" java.lang.Error: Unresolved compilation problem: Unhandled exception type Exception)

I am getting an error at the PhoneBookMapper phoneBook - new PhoneBookMapper(file). When I run it it say Exception in thread "main" java.lang.Error: Unresolved compilation problem: unhandled exception type Exception import java.io.*; import…
0
votes
0 answers

Online Contact List without Active Directory

sorry for asking direct questions in here, but i couldn't find any solutions to my problem. Is there any way of creating/hosting a contact list (like active directory) for phones (android and ios alike) on my website. Or any chance of a way to…
0
votes
3 answers

Using local storage on Angular

I'm trying to make a simple phonebook using Angular, but I'm struggling with making my "app" store the information inserted to local storage. Here is what I have so far, so if anyone has time to take a peak, I would appreciate it very…
0
votes
1 answer

Xamarin Forms: How to fetch the latest contacts of phone after adding a number to phonebook?

I have referred to this blog for listing the phone contacts. Also, I have implemented adding contacts to the phonebook using DependencyService as per this thread. My problem is after adding a contact to the device phone book I need to fetch the…
Sreejith Sree
  • 3,055
  • 4
  • 36
  • 105
0
votes
1 answer

Will different arrays sync after bubble sorting one?

As a school assignment, I have to create a Python app that allows the user to add personal information on X amount of people. With that said, the program allows the user to select many options and one of them is to sort the list of people with their…
Bao Tang
  • 3
  • 2
0
votes
0 answers

Deleting contacts in the phonebook on java

Please Help! unable to add the delete Contact method in the phonebook on java. Such that when enter the name of the person, the contact in text file will delete. There is no error in the code but the delete method is not working. The text file also…
1
2