Archived:How to choose a phone number in PySymbian
Aquivado: Este artigo foi arquivado, pois o conteúdo não é mais considerado relevante para se criar soluções comerciais atuais. Se você achar que este artigo ainda é importante, inclua o template {{ForArchiveReview|escreva a sua justificativa}}.
All PySymbian articles have been archived. PySymbian is no longer maintained by Nokia and is not guaranteed to work on more recent Symbian devices. It is not possible to submit apps to Nokia Store.
All PySymbian articles have been archived. PySymbian is no longer maintained by Nokia and is not guaranteed to work on more recent Symbian devices. It is not possible to submit apps to Nokia Store.
Article Metadata
Tested with
Devices(s): N95 8gb, N96
Compatibility
Platform(s): S60 2nd Edition, S60 3rd Edition
Article
Keywords: contacts
Created: cyke64
(15 Mar 2007)
Last edited: hamishwillee
(08 May 2013)
Contents |
Overview
Following code shows a minimal example to let you choose from your contacts in the phonebook. It uses contacts module of Python
Code
# import modules
import appuifw, contacts
# Open contacts database
db = contacts.open()
# Create two empty lists for names and corresponding numbers
names = []
numbers = []
# Append contact names and numbers to lists
for i in db:
names.append(db[i].title) # Get contact title
num = db[i].find('mobile_number') # Find number for the contact
if num:
numbers.append(num[0].value) # first mobile
else:
numbers.append(None)
# Select the contact from selection list
i = appuifw.selection_list(names)
t = numbers[i]
appuifw.note(u"Selected Phone Number is:" +t,'conf') # gives the number as output
Postconditions
Below are the screenshots of the above script




(no comments yet)