send phone number through emulator
问题 I am making an application and I want to retrieve the device phone number and send that on the server. But I am testing this application on android emulator. Can anybody please tell me how to set or get the phone number in emulator and actual device. Thanks. 回答1: We can get the phone number in emulator if we use the Telephony manager TelephonyManager tm = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); String phone = tm.getLine1Number(); Toast toast = Toast.makeText