I would like to know Location Area Code and Cell ID saved in sim card.
How to get Location Area Code and Cell ID in android phone.
best regards.
I don't know if you can acces that information. The location data of which I know you can acces it is this
From the Android Developers guide on d.android.com
"You can look up the locale using the Context object that Android makes available:
String locale = context.getResources().getConfiguration().locale.getDisplayName();
"
EDIT: Oh what for do you need it? Because if you only want to make different resources for it, you don't need to acces the information, as Android does that for you. Read about it on the d.android.com dev guide in the chapter localization.