Cursor cursor= getContentResolver()
.query(Uri.parse("content://telephony/carriers"), new String[] {"name"}, "current=1", null, null);//Current=1 current APN
if (cursor!=null) {
try {
if (cursor.moveToFirst()) {
String name = cursor.getString(0);
}
} finally {
cursor.close();
}
Constant Fields avaiolable in "com.android.providers.telephony.TelephonyProvider"
No comments:
Post a Comment