<activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>这里的MainActivity改成你的Activity01吧

解决方案 »

  1.   

    改了以后运行程序显示null:0,我通讯录里有个联系人的
      

  2.   

    改了以后运行程序显示null:0,我通讯录里有个联系人的你调试下就知道有没有数据读出来了,而且通讯录里只有一个联系人吧,
    string +=(contact+":"+number+"\n");
    contact根本就没赋值,一直都是null
      

  3.   

    ……发成 code格式 好看点额,
      

  4.   

    改了以后运行程序显示null:0,我通讯录里有个联系人的你调试下就知道有没有数据读出来了,而且通讯录里只有一个联系人吧,
    string +=(contact+":"+number+"\n");
    contact根本就没赋值,一直都是null
    对,只有一个联系人Xiaoming,我加了个联系人Xiaohong后就输出两行null:0,那怎么样才能给contact赋值呢
      

  5.   

    int indexPeopleName = cursor.getColumnIndex(Phone.DISPLAY_NAME);  // people name
       int indexPhoneNum = cursor.getColumnIndex(Phone.NUMBER);    // phone number
       String strPeopleName = cursor.getString(indexPeopleName);
       String strPhoneNum = cursor.getString(indexPhoneNum);
      

  6.   

    MainActivity.java:
    package com.example.getphonenumber;import android.support.v7.app.ActionBarActivity;
    import android.os.Bundle;
    import android.view.Menu;
    import android.view.MenuItem;
    public class MainActivity extends ActionBarActivity {    @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
        }
        @Override
        public boolean onCreateOptionsMenu(Menu menu) {
            // Inflate the menu; this adds items to the action bar if it is present.
            getMenuInflater().inflate(R.menu.main, menu);
            return true;
        }    @Override
        public boolean onOptionsItemSelected(MenuItem item) {
            // Handle action bar item clicks here. The action bar will
            // automatically handle clicks on the Home/Up button, so long
            // as you specify a parent activity in AndroidManifest.xml.
            int id = item.getItemId();
            if (id == R.id.action_settings) {
                return true;
            }
            return super.onOptionsItemSelected(item);
        }
        
      
      
    }
    Activity01.java:
    package com.example.getphonenumber;import android.app.Activity;
    import android.content.ContentResolver;
    import android.database.Cursor;
    import android.os.Bundle;
    import android.provider.ContactsContract;
    import android.provider.ContactsContract.PhoneLookup;
    import android.widget.TextView;public class Activity01 extends Activity{
    private int numberFieldColumnIndex;
    private String contact;public void onCreate(Bundle savedInstanceState){
    TextView tv=new TextView(this);
    String string="";
    super.onCreate(savedInstanceState);
    ContentResolver cr=getContentResolver();
    Cursor cursor=cr.query(ContactsContract.Contacts.CONTENT_URI,null,null,null,null);
    while(cursor.moveToNext())
    {int nameFieldColumnIndex=cursor.getColumnIndex(PhoneLookup.DISPLAY_NAME);
    String number=cursor.getString(numberFieldColumnIndex);
    string +=(contact+":"+number+"\n");}
    cursor.close();
    tv.setText(string);
    setContentView(tv);
    }}getphonenumber mainfest:<?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.example.getphonenumber"
        android:versionCode="1"
        android:versionName="1.0" >    <uses-sdk
            android:minSdkVersion="8"
            android:targetSdkVersion="8" />
    <uses-permission
                android:name="android.permission.READ_CONTACTS">
                
            </uses-permission>
        <application
            android:allowBackup="true"
            android:icon="@drawable/ic_launcher"
            android:label="@string/app_name"
            android:theme="@style/AppTheme" >
            <activity
                android:name=".MainActivity"
                android:label="@string/app_name" >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />                <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
            
        </application></manifest>
    activity_main.xml:<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingBottom="@dimen/activity_vertical_margin"
        android:paddingLeft="@dimen/activity_horizontal_margin"
        android:paddingRight="@dimen/activity_horizontal_margin"
        android:paddingTop="@dimen/activity_vertical_margin"
        tools:context="com.example.getphonenumber.MainActivity" >    <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/hello_world" /></RelativeLayout>
      

  7.   

    cursor?
    Cursor c = getContentResolver().query(Uri.withAppendedPath(
                    PhoneLookup.CONTENT_FILTER_URI, "*"), new String[] {
                    PhoneLookup._ID,
                    PhoneLookup.NUMBER,
                    PhoneLookup.DISPLAY_NAME,
                    PhoneLookup.TYPE, PhoneLookup.LABEL }, null, null, sortOrder);
      

  8.   

    改了以后运行程序显示null:0,我通讯录里有个联系人的你调试下就知道有没有数据读出来了,而且通讯录里只有一个联系人吧,
    string +=(contact+":"+number+"\n");
    contact根本就没赋值,一直都是null
    对,只有一个联系人Xiaoming,我加了个联系人Xiaohong后就输出两行null:0,那怎么样才能给contact赋值呢//得到联系人名称  
    String contact = cursor.getString(PHONES_DISPLAY_NAME_INDEX);
      

  9.   

    int nameFieldColumnIndex=cursor.getColumnIndex(PhoneLookup.DISPLAY_NAME);
    String number=cursor.getString(numberFieldColumnIndex);这里用法不对吧…
      

  10.   

    http://xys289187120.blog.51cto.com/3361352/656766