<bdo id='pOgZg'></bdo><ul id='pOgZg'></ul>

      <tfoot id='pOgZg'></tfoot>
    1. <small id='pOgZg'></small><noframes id='pOgZg'>

    2. <legend id='pOgZg'><style id='pOgZg'><dir id='pOgZg'><q id='pOgZg'></q></dir></style></legend>
        <i id='pOgZg'><tr id='pOgZg'><dt id='pOgZg'><q id='pOgZg'><span id='pOgZg'><b id='pOgZg'><form id='pOgZg'><ins id='pOgZg'></ins><ul id='pOgZg'></ul><sub id='pOgZg'></sub></form><legend id='pOgZg'></legend><bdo id='pOgZg'><pre id='pOgZg'><center id='pOgZg'></center></pre></bdo></b><th id='pOgZg'></th></span></q></dt></tr></i><div id='pOgZg'><tfoot id='pOgZg'></tfoot><dl id='pOgZg'><fieldset id='pOgZg'></fieldset></dl></div>

        从坐标获取国家?

        时间:2023-09-02
        1. <tfoot id='esT4s'></tfoot>
            <legend id='esT4s'><style id='esT4s'><dir id='esT4s'><q id='esT4s'></q></dir></style></legend>

            <small id='esT4s'></small><noframes id='esT4s'>

              <tbody id='esT4s'></tbody>
            <i id='esT4s'><tr id='esT4s'><dt id='esT4s'><q id='esT4s'><span id='esT4s'><b id='esT4s'><form id='esT4s'><ins id='esT4s'></ins><ul id='esT4s'></ul><sub id='esT4s'></sub></form><legend id='esT4s'></legend><bdo id='esT4s'><pre id='esT4s'><center id='esT4s'></center></pre></bdo></b><th id='esT4s'></th></span></q></dt></tr></i><div id='esT4s'><tfoot id='esT4s'></tfoot><dl id='esT4s'><fieldset id='esT4s'></fieldset></dl></div>

                <bdo id='esT4s'></bdo><ul id='esT4s'></ul>

                  本文介绍了从坐标获取国家?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  如何在Android中获取国家名称,如果已知地理坐标?怎么做最简单?

                  How to get country name in Android, If are known geo coordinates? How to make it the simplest way?

                  推荐答案

                  为此使用下面的函数.

                  public void getAddress(double lat, double lng) {
                      Geocoder geocoder = new Geocoder(HomeActivity.mContext, Locale.getDefault());
                      try {
                          List<Address> addresses = geocoder.getFromLocation(lat, lng, 1);
                          Address obj = addresses.get(0);
                          String add = obj.getAddressLine(0);
                          GUIStatics.currentAddress = obj.getSubAdminArea() + ","
                                  + obj.getAdminArea();
                          GUIStatics.latitude = obj.getLatitude();
                          GUIStatics.longitude = obj.getLongitude();
                          GUIStatics.currentCity= obj.getSubAdminArea();
                          GUIStatics.currentState= obj.getAdminArea();
                          add = add + "
                  " + obj.getCountryName();
                          add = add + "
                  " + obj.getCountryCode();
                          add = add + "
                  " + obj.getAdminArea();
                          add = add + "
                  " + obj.getPostalCode();
                          add = add + "
                  " + obj.getSubAdminArea();
                          add = add + "
                  " + obj.getLocality();
                          add = add + "
                  " + obj.getSubThoroughfare();
                  
                          Log.v("IGA", "Address" + add);
                          // Toast.makeText(this, "Address=>" + add,
                          // Toast.LENGTH_SHORT).show();
                  
                          // TennisAppActivity.showDialog(add);
                      } catch (IOException e) {
                          // TODO Auto-generated catch block
                          e.printStackTrace();
                          Toast.makeText(this, e.getMessage(), Toast.LENGTH_SHORT).show();
                      }
                  }
                  

                  在清单中添加以下权限

                  <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
                  

                  这篇关于从坐标获取国家?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:Phonegap 地理定位有时无法在 android 上运行 下一篇:Android:使用 LocationManager.requestLocationUpdates() 时如何

                  相关文章

                  最新文章

                • <legend id='4BemG'><style id='4BemG'><dir id='4BemG'><q id='4BemG'></q></dir></style></legend>

                  1. <i id='4BemG'><tr id='4BemG'><dt id='4BemG'><q id='4BemG'><span id='4BemG'><b id='4BemG'><form id='4BemG'><ins id='4BemG'></ins><ul id='4BemG'></ul><sub id='4BemG'></sub></form><legend id='4BemG'></legend><bdo id='4BemG'><pre id='4BemG'><center id='4BemG'></center></pre></bdo></b><th id='4BemG'></th></span></q></dt></tr></i><div id='4BemG'><tfoot id='4BemG'></tfoot><dl id='4BemG'><fieldset id='4BemG'></fieldset></dl></div>

                      • <bdo id='4BemG'></bdo><ul id='4BemG'></ul>
                    1. <small id='4BemG'></small><noframes id='4BemG'>

                    2. <tfoot id='4BemG'></tfoot>