- 浏览: 314772 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
u011076522:
写的确实不错,总结的很好,内容大都属实
C/C++内存分配方式 -
水晶魔方:
...
联合编译工具推荐IncrediBuild -
caiwb1990:
又看了一遍~ 越看越清晰~
C/C++内存分配方式 -
caiwb1990:
每次准备面试的时候来瞅瞅。timer_yin 写道好文,正好补 ...
TCP/IP、Http、Socket的区别【转】 -
caiwb1990:
互相学习~kongxuan 写道这个不错,用简单的话将事情讲明 ...
TCP/IP、Http、Socket的区别【转】
我们获取Location的目的之一肯定是有获取这个位置的详细地址,而我们有了Location在来获取Address就相对简单多了,因为GoogleApi已经封装好了方法,我们只需呀通过Location获取GeoPoint,然后在通过GeoPoint来获取我们想要的Address.
第一步新建一个Android工程LocationDemo,
第二步: 修改main.xml
第三步:修改LocationDemo.java
第四步:最重要一步在AndroidManiefest.xml中导入Google Api库
第一步新建一个Android工程LocationDemo,
第二步: 修改main.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <TextView android:id="@+id/longitude" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="longitude:" /> <TextView android:id="@+id/latitude" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="latitude:" /> <TextView android:id="@+id/address" android:layout_width="fill_parent" android:layout_height="wrap_content" /> </LinearLayout>
第三步:修改LocationDemo.java
package cn.caiwb.address import java.util.List; import java.util.Locale; import com.google.android.maps.GeoPoint; import android.app.Activity; import android.content.Context; import android.location.Address; import android.location.Geocoder; import android.location.Location; import android.location.LocationManager; import android.os.Bundle; import android.widget.TextView; public class LocationDemo extends Activity { private TextView longitude; private TextView latitude; private TextView address; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); longitude = (TextView)findViewById(R.id.longitude); latitude = (TextView)findViewById(R.id.latitude); address = (TextView)findViewById(R.id.address); Location mLocation = getLocation(this); GeoPoint gp = getGeoByLocation(mLocation); Address mAddress = getAddressbyGeoPoint(this, gp); longitude.setText("Longitude: " + mLocation.getLongitude()); latitude.setText("Latitude: " + mLocation.getLatitude()); address.setText("Address: " + mAddress.getCountryName()+"," + mAddress.getLocality()); } //Get the Location by GPS or WIFI public Location getLocation(Context context) { LocationManager locMan = (LocationManager) context .getSystemService(Context.LOCATION_SERVICE); Location location = locMan .getLastKnownLocation(LocationManager.GPS_PROVIDER); if (location == null) { location = locMan .getLastKnownLocation(LocationManager.NETWORK_PROVIDER); } return location; } //通过Location获取GeoPoint public GeoPoint getGeoByLocation(Location location) { GeoPoint gp = null; try { if (location != null) { double geoLatitude = location.getLatitude() * 1E6; double geoLongitude = location.getLongitude() * 1E6; gp = new GeoPoint((int) geoLatitude, (int) geoLongitude); } } catch (Exception e) { e.printStackTrace(); } return gp; } //通过GeoPoint来获取Address public Address getAddressbyGeoPoint(Context cntext, GeoPoint gp) { Address result = null; try { if (gp != null) { Geocoder gc = new Geocoder(cntext, Locale.CHINA); double geoLatitude = (int) gp.getLatitudeE6() / 1E6; double geoLongitude = (int) gp.getLongitudeE6() / 1E6; List<Address> lstAddress = gc.getFromLocation(geoLatitude, geoLongitude, 1); if (lstAddress.size() > 0) { result = lstAddress.get(0); } } } catch (Exception e) { e.printStackTrace(); } return result; } }
第四步:最重要一步在AndroidManiefest.xml中导入Google Api库
<uses-library android:name="com.google.android.maps" />
发表评论
-
Android多线程:预读实现
2012-04-08 00:22 3019上一篇博文我们可以知道,使用AsyncTask有导致应用FC的 ... -
Android多线程:AsyncTask的分析
2012-04-05 13:34 4627开发Android应用的过程中,我们需要时刻注意保障应用的稳定 ... -
Android异步4:深入AsyncTask原理
2012-03-01 09:12 4845AsyncTask的本质是一个线程池,所有提交的异步任务都会在 ... -
Android异步3:AsyncTask更新UI
2012-02-29 10:13 1389前天写了Thread+Handler的 ... -
Android异步2:深入详解 Handler+Looper+MessageQueue
2012-02-28 10:15 1721Android使用消息机制实现 ... -
Android异步1:Thread+Handler更新UI
2012-02-27 14:01 2273每个Android应用程序都运行在一个dalvik虚拟机进程中 ... -
WebView及js
2012-02-20 09:37 1319在Android中通过WebView控 ... -
Android用线程应注意
2012-02-17 09:36 1406我们都知道Hanlder是线程与Activity通信的桥梁,我 ... -
Android用线程应注意
2012-02-17 09:35 1我们都知道Hanlder是线程 ... -
Android获取经纬度
2012-02-16 09:34 4448Location 在Android 开发中还是经常用到的,比如 ... -
Android启动已安装应用
2012-02-15 22:45 1192如何在一个应用中 通过某个事件,而去启动另外一个已安装的应用。 ... -
Android 获取Ip
2012-02-15 22:41 1140我们开发中,有判断手机是否联网,或者想获得当前手机的Ip地址, ... -
布局定义菜单--MenuInflater的使用
2012-02-14 10:42 2226传统意义上的定义菜单感觉比较繁琐,当我们使用MenuInfla ... -
LayoutInflater的使用
2012-02-13 11:58 1369在实际开发种LayoutInflater这个类还是非常有用的, ... -
自定义属性
2012-02-13 11:54 1159在xml 文件里定义控件的属性,我们已经习惯了android: ... -
自定义View
2012-02-13 11:37 1014对于初学着来说,他们习惯了Android 传统的页面布局方式, ... -
Intent传递对象的两种方法(Serializable,Parcelable)
2012-02-13 10:23 30103今天讲一下Android中Intent中如何传递对象,就我目前 ... -
Android Service 服务详细讲解
2012-01-16 09:38 1028Android 的Service 和 Handler一样很重, ... -
自定义窗口标题
2011-11-06 14:10 1718我们看到过很多应用,他们的窗口标题行都不是系统默认的 要么有按 ...
相关推荐
Android官方API离线版是一个非常宝贵的资源,它包含了大量的Android开发所需的信息,使得开发者无需互联网连接也能查阅Android的API文档。这个压缩包提供的是`.chm`格式的文件,这是一种由微软开发的帮助文件格式,...
1. **Google Play服务**:Google Play服务是Android应用程序开发中的一个重要组件,它提供了许多API,包括定位、地图、游戏服务等。要使用基于经纬度的地理编码功能,开发者需要在项目中引入Google Play服务库。 2....
【Android Google API】是Google为Android开发者提供的一个强大的工具集,它允许开发者在Android设备上集成各种Google服务,如地图、Google Play服务、Google Drive、Google Sign-In等。本项目中的"iTracks"小程序,...
9. **测试与发布**:API文档还包含有关如何测试应用程序、准备发布和提交到Google Play Store的指南。 通过阅读和理解Android API合集,开发者能够学习到如何使用Android SDK创建应用程序,如何与系统服务交互,...
Android API文档是开发者在进行Android应用开发时的重要参考资料,它详尽地介绍了Android系统的各种接口、类库和功能。这份“Android API文档完整版”包含了官方文档和具有搜索功能的版本,使得开发者能够更高效地...
首先,Google提供了多个API,如Geocoding API用于地址转换为经纬度坐标,Geolocation API用于获取设备的位置信息,而Weather API则提供实际的天气数据。开发者通常会结合这些API,构建出一个完整的天气应用。 1. **...
3. **传感器与位置服务**:API Demo包含了有关如何使用加速度计、陀螺仪、磁力计等传感器的示例,以及如何利用Google Maps API获取地理位置信息。 4. **多媒体支持**:Android-15增强了多媒体文件的处理能力,API ...
虽然Eclipse不再得到Google的官方支持,但开发者依然可以通过ADT(Android Developer Tools)插件来管理SDK,包括添加API 29。首先,需要在Eclipse中打开“Window” > “Android SDK Manager”,然后勾选“Android ...
android-serialport-api Accessing serial ports for Android The current Android SDK does not provide any API for reading and writing to the ...https://code.google.com/archive/p/android-serialport-api/
在Android开发中,隐藏API指的是官方不推荐或者不公开直接使用的API接口,这些接口通常用于系统内部功能,可能因为安全、稳定性的考虑而被限制访问。然而,有时开发者为了实现某些特定功能,可能会需要利用这些隐藏...
在Android 6.0(API级别23)之前,开发者可以轻松地通过`WifiManager`类的`getMacAddress()`方法来获取设备的Mac地址。以下是一个简单的示例: ```java WifiManager wifiManager = (WifiManager) context....
throw new IOException("无法获取地址"); } } ``` 这个方法会返回一个`Address`对象列表,通常只有一个元素,因为我们在调用`getFromLocation()`时指定了返回结果数量为1。`Address`对象包含了详细的地址信息,如...
Android API是Google提供的编程接口,它包含了Android操作系统的核心功能和组件。开发者可以使用这些API来构建各种各样的移动应用,包括但不限于用户界面设计、数据存储、网络通信、多媒体处理、设备硬件访问等。...
替换`YOUR_API_KEY`为你的Google Maps API密钥,可在Google Cloud Console中获取。 接下来,我们介绍如何使用Google Maps SDK来显示地图。在布局XML文件中添加MapView控件: ```xml <com.google.android.gms.maps....
然后,获取API密钥,这是连接我们的应用与Google Maps服务的关键。 在AndroidManifest.xml文件中,我们需要添加必要的权限,如访问网络和位置服务。例如: ```xml <uses-permission android:name="android....
Google官方提供的`android-serialport-api`库就是为了方便开发者实现这一功能。这个库允许Android应用程序访问并控制设备上的串行端口,进行数据传输。 首先,我们要理解什么是串口通信。串口通信,也称为串行接口...
**Android API 深度解析:Google 官方 API(Android-12 ApiDemo)** 在 Android 开发中,Google 官方API扮演着至关重要的角色。这些API为开发者提供了丰富的功能,使得应用程序能够实现从基础操作到复杂交互的一切...
在Android 10.0版本中,为了保护用户隐私和遵循GDPR(General Data Protection Regulation)规定,谷歌对获取设备序列号的接口进行了调整,使得开发者不能直接通过公共API获取SN号。因此,"Android10.0 SN号获取接口...
Android API中文帮助文档合集是为Android开发者提供的一份详尽的参考资料,旨在助力开发者更好地理解和使用Android平台的各种功能和接口。这份文档包含了从基础到高级的各类Android开发知识点,覆盖了系统架构、UI...
在Android开发中,Android Studio是谷歌官方推荐的集成开发环境(IDE),用于构建原生Android应用。本案例“android studio 简单获取天气”旨在教你如何利用Android Studio开发一个应用,该应用能够从网络获取天气...