I want to import contacts from my gmail account on android emulator in the same way you can do it on T-Mobile G1 phone.
Is it possible?
[I have
If you sync your Android phone to your Google account, Google needs a unique ID to identify the device. Real phones do have a globally unique IMEI number, but all emulator installations are the same.
Try
((TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE)).getDeviceId();
in a Context and it should always return 0 on the emulator, but a unique key on a real world phone.