文件名称:Android Proximity Alert 手机接近进警告或提示功能一例.rar
文件大小:17KB
文件格式:RAR
更新时间:2022-07-30 05:05:21
Android源码-系统相关
Android Proximity Alert 手机接近进警告或提示功能一例 LocationManager lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE); //定义接近区域的大致经度、纬度 double longitude = 113.39; double latitude = 23.13; //定义接近区域的半径(5公里) float radius = 5000; //定义接近区域后 触发的PendingIntent Intent intent = new Intent(this,ProximityAlertReciever.class); PendingIntent pi = PendingIntent.getBroadcast(this, -1, intent, 0); //添加接近警告 lm.addProximityAlert(latitude, longitude, radius, -1, pi);
【文件预览】:
srcfans.com
----ProximityAlertSample()
--------.project(856B)
--------project.properties(361B)
--------proguard.cfg(1KB)
--------src()
--------AndroidManifest.xml(751B)
--------res()
--------assets()
--------gen()
--------.classpath(364B)
--------bin()