How to know Location Area Code and Cell ID in android phone

前端 未结 5 2094
醉梦人生
醉梦人生 2020-12-15 10:29

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.

5条回答
  •  Happy的楠姐
    2020-12-15 11:15

    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.

提交回复
热议问题