0

Androidで電話番号を取得するにはどうすればよいですか?

サンプルコード:

var contacts = Titanium.Contacts.getAllPeople();
Titanium.API.log(contacts[0].phone['mobile'][0]); //in iOS, returns "01012345678" fine :)
Titanium.API.log(contacts[0].phone['mobile'][0]); //in Android, returns ""  :(
Titanium.API.log(contacts[0].fullName); //in Android & iOS, returns "test Name" fine :)
Titanium.API.log(contacts[0].phone); //in Android, returns "" :(
4

2 に答える 2

0

このコードは私のために働いた。それが携帯電話であろうと自宅であろうと他のものであろうと、電話帳からすべての連絡先番号をスキャンします。コードはまた、数字からすべての数字以外の文字を削除します。

var people = Ti.Contacts.getAllPeople();
for (var i=0, ilen=people.length; i<ilen; i++)
{
    var person = people[i];
    for(var temp in person.phone)
    {
        var temp_numbers = person.phone[temp];
        for(var k=0;k<temp_numbers.length; k++)
        {
            var temp_num = temp_numbers[k];
            temp_num = temp_num.replace(/[^\d.]/g, "");
        }
    }
}
于 2012-10-15T13:43:02.273 に答える
0

次のコードを試してみてください。うまくいきました

//Getting all the contacts
var people = Ti.Contacts.getAllPeople();

//Getting the total number of contacts
var totalContacts = people.length;
//Checking whether the contact list is empty or not
if( totalContacts > 0 )
{
    for( var index = 0; index < totalContacts; index++ )
    {
       //Holding the details of a single contact
       var person = people[index];
      Ti.API.info("Mobile -> " + person['phone'].mobile + " home-> " + person['phone'].home);
    }
}

お使いの電話には、携帯電話と自宅のオプションに連絡先番号が含まれている必要があることに注意してください。Androidエミュレーターからのスクリーンショットを追加しました。このような数字を与えてみてください

ここに画像の説明を入力

于 2012-10-15T07:20:57.407 に答える