**
how to get phone no of caller (i mean our own phone no)?
**I got the reciever phone number but not getting caller phone no.If any idea please tell me?
**
how to get phone no of caller (i mean our own phone no)?
**I got the reciever phone number but not getting caller phone no.If any idea please tell me?
to get ur phone no following code is used
final Context context = getApplicationContext();
TelephonyManager tMgr = (TelephonyManager) context
.getSystemService(Context.TELEPHONY_SERVICE);
String mPhoneNumber = tMgr.getLine1Number();
and add uses-permission for
android.permission.READ_PHONE_STATE
in androidmanifest.xml