Android 2.1系统如何获取联系人的电话号码

问题描述:

我是新来的Andr​​oid和一直在一个应用程序,需要得到所有用户的联系人的电话号码。显然,code我不与2.1 SDK的工作。到目前为止,这里是code我使用的:

I am new to Android and have been working on an app that needs to get all of the user's contact's phone numbers. Apparently the code I have does not work with the 2.1 SDK. So far here is the code I am using:

String[] projection = new String[] { Phone.NUMBER };
Cursor c = managedQuery( Phone.CONTENT_URI, projection, null, null, null );
int colIndex = -1;
try {
    colIndex = c.getColumnIndexOrThrow( Phone.NUMBER );
} catch( Exception e ) {
    print( e.getMessage() ); 
}

print( "Column Index = " + colIndex ); 

//count is equal to 3
for( int i = 0; i < count; i++ ){
    try {
        print( c.getString( 2 ) ); //the 2 used to be colIndex
    } catch ( Exception e ) {
        print( e.getMessage() ); 
    }
}

看来,不管我传入c.getString()它总是告诉我,我通过在-1。不过,我甚至很难$ C $光盘2,和它说同样的事情。任何帮助将是非常美联社preciated。

It seems that no matter what I pass into c.getString() it keeps telling me that I passed in -1. But I even hardcoded the 2, and it says the same thing. Any help would be much appreciated.

有关您的具体问题看在这个问题上公认的答案:

For your specific question see the accepted answer on this question:

阅读所有联系人的电话号码的Andr​​oid