Tag: 电话管理器

如何删除国家代码,当从联系人中选择电话号码

我对这一部分有怀疑。 当我从联系人列表中选择电话号码时如何删除国家/地区代码? 例如:+91 999999999而不是9999999999或+020 9696854549而不是9696854549任何人都可以知道我的问题的答案。 请解决这个问题 我在这里附上我的代码和图片。 private void contactPicked(Intent data) { Cursor cursor = null; try { String phoneNo = null ; // getData() method will have the Content Uri of the selected contact Uri uri = data.getData(); //Query the content uri cursor = getContentResolver().query(uri, null, null, null, null); cursor.moveToFirst(); // column index of […]