位置: 编程技术 - 正文

android中定时定位的实现(android定时器的使用)

编辑:rootadmin
想要实现这个功能,应该分为三部分工作。(1)定时功能的实现,调用系统当前时间,使用timer实现定时功能;(2)当前位置的获取,使用GPS功能获取当前位置,并且显示出经度和纬度,并且使用位置监听事件LocationListener监听位置变化,当位置改变时,获取新的经纬度,并显示;(3)将两部分功能进行整合为一个整体。代码如下:import java.text.SimpleDateFormat;import java.util.Date;import java.util.Timer;import java.util.TimerTask;import android.location.Criteria;import android.location.Location;import android.location.LocationListener;import android.location.LocationManager;import android.os.Bundle;import android.os.Handler;import android.os.Message;import android.annotation.SuppressLint;import android.app.Activity;import android.appwidget.AppWidgetManager;import android.content.Context;import android.text.method.DateTimeKeyListener;import android.view.Menu;import android.widget.TextView;import android.widget.Toast;public class TimerActivity extends Activity {private Handler handler = new Handler();Timer timer;Timer timerone;TimerTask task = new TimerTask() {// 任务public void run() {Message message = new Message();message.what = 1;handler.sendMessage(message);}};TimerTask taskone = new TimerTask() {// 任务public void run() {Message message = new Message();message.what = 0;handler.sendMessage(message);}};String g_latLongString;@SuppressLint("HandlerLeak")@Overridepublic void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.main);timer = new Timer(true);timer.schedule(task, 0, ); // 延时ms后执行,ms执行一次timerone = new Timer(true);timerone.schedule(taskone, 0, ); // 延时ms后执行,ms执行一次// timer.cancel(); //退出计时器// 通过系统服务,取得LocationManager对象//声明LocationManager对象 LocationManager loctionManager; String contextService=Context.LOCATION_SERVICE; //通过系统服务,取得LocationManager对象 loctionManager=(LocationManager) getSystemService(contextService); //通过GPS位置提供器获得位置// String provider=LocationManager.GPS_PROVIDER;// Location location = loctionManager.getLastKnownLocation(provider); //使用标准集合,让系统自动选择可用的最佳位置提供器,提供位置 Criteria criteria = new Criteria(); criteria.setAccuracy(Criteria.ACCURACY_FINE);//高精度 criteria.setAltitudeRequired(false);//不要求海拔 criteria.setBearingRequired(false);//不要求方位 criteria.setCostAllowed(true);//允许有花费 criteria.setPowerRequirement(Criteria.POWER_LOW);//低功耗 //从可用的位置提供器中,匹配以上标准的最佳提供器 String provider = loctionManager.getBestProvider(criteria, true); //获得最后一次变化的位置 Location location = loctionManager.getLastKnownLocation(provider); //显示在TextView中 updateWithNewLocation(location); //监听位置变化,2秒一次,距离米以上 loctionManager.requestLocationUpdates(provider, , 2, locationListener);handler = new Handler() {// 委托@Overridepublic void handleMessage(Message msg) {switch (msg.what) {case 1:try {TextView recordLoctionText = (TextView)findViewById(R.id.recordLoctionText);recordLoctionText.append(g_latLongString &#; "n");} catch (Exception e) {Toast.makeText(getApplicationContext(), e.toString(),Toast.LENGTH_SHORT).show();}break;case 0:SimpleDateFormat formatter = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss");Date curDate = new Date(System.currentTimeMillis());// 获取当前时间String str = formatter.format(curDate);TextView mytimeText = (TextView)findViewById(R.id.mytimeText);mytimeText.setText(str );}}};}//位置监听器 private final LocationListener locationListener = new LocationListener() {@Overridepublic void onStatusChanged(String provider, int status, Bundle extras) {}@Overridepublic void onProviderEnabled(String provider) {}@Overridepublic void onProviderDisabled(String provider) {updateWithNewLocation(null);}//当位置变化时触发@Overridepublic void onLocationChanged(Location location) {//使用新的location更新TextView显示updateWithNewLocation(location);}}; // 将位置信息显示在TextView中private void updateWithNewLocation(Location location) {String latLongString;TextView myLoctionText;myLoctionText = (TextView) findViewById(R.id.myLoctionText);if (location != null) {double lat = location.getLatitude();double lng = location.getLongitude();latLongString = "Lat(纬度): " &#; lat &#; "nLong(经度): " &#; lng;g_latLongString = latLongString;} else {latLongString = "没找到位置";}// SimpleDateFormat formatter = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss");// Date curDate = new Date(System.currentTimeMillis());// 获取当前时间// String str = formatter.format(curDate);myLoctionText.setText( "您当前的位置是:n" &#; latLongString);}@Overridepublic boolean onCreateOptionsMenu(Menu menu) {// Inflate the menu; this adds items to the action bar if it is present.getMenuInflater().inflate(R.menu.timer, menu);return true;}}XML文件:<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android=" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" ><TextView android:id="@&#;id/mytimeText" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="" android:textSize="dip" /> <TextView android:id="@&#;id/myLoctionText" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="" android:textSize="dip" /> <ScrollView android:layout_width="fill_parent" android:layout_height="fill_parent" android:scrollbars="none" > <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="dp" android:orientation="vertical" > <TextView android:id="@&#;id/recordLoctionText" android:layout_width="wrap_content" android:layout_height="wrap_content" android:fadeScrollbars="false" android:scrollbars="vertical" android:text="" android:textColor="#" android:textSize="dip" /> </LinearLayout> </ScrollView></LinearLayout>

推荐整理分享android中定时定位的实现(android定时器的使用),希望有所帮助,仅作参考,欢迎阅读内容。

android中定时定位的实现(android定时器的使用)

文章相关热门搜索词:android 定时器,android 定时执行,android定时任务是什么,android 定时器,安卓app自动定时执行操作,安卓app自动定时执行操作,android定时执行某个任务,android定时任务是什么,内容如对您有帮助,希望把文章链接给更多的朋友!

Android之Volley 简介:Volley是GoogleI/O上Google官方发布的一款Android平台上的网络通信库。以前的网络请求,要考虑开启线程、内存泄漏、性能等等复杂的问题。但是Vol

android中注册页面实现 自己动手做的第一个demo,简单的注册页面的实现,并且注册成功后返回注册信息,适用于android新手基本控件的使用。注册页面的实现:importandroid.os.Bund

Android酷炫实用的开源框架(UI框架)(转载,只为保存) 转自Android开发中文站»Android酷炫实用的开源框架(UI框架),点击打开链接。转载该博客,只为保存,留下自己慢慢体验。1.Side-Menu.Android分类侧滑菜单

标签: android定时器的使用

本文链接地址:https://www.jiuchutong.com/biancheng/374481.html 转载请保留说明!

上一篇:普通本科生面试总结以及在校编程经历(本科生面试的自我介绍)

下一篇:Android之Volley

  • 其他债权投资有减值吗
  • 车辆备注栏备注怎么填
  • 异地预缴税款怎么抵扣
  • 培训发生的住宿费 差旅费可以放入职工教育经费吗
  • 核定征收企业怎么申报
  • 应纳税额滞纳金
  • 税负率怎么算计算公式举例说明
  • 发微信验证消息
  • 支付的水电费属于什么会计科目
  • 建筑企业升资质主管单位
  • 投资款怎样缴印花税?
  • 税控系统技术维护费
  • 营改增对运输业的影响
  • 会员卡充值赠送金额怎么做账
  • 销售单价的变动,将促使保本点( )
  • 资产损失税前扣除
  • 计划分配率怎么算
  • 投资公司的股东
  • 退税需要怎么操作
  • award bios设置详解
  • 入库单做账是预付款还是应付款
  • 如何修复win7系统引导
  • 其他应付款不用付了怎么做分录
  • 建筑保温材料施工工艺
  • 若依框架使用
  • 母公司收取子公司管理费的税率
  • 研发和技术服务税率由6%变为3%
  • 记账凭证错误用什么更正
  • Vue3中的pinia使用(收藏版)
  • Vue3通透教程【十三】TS简单类型详解
  • 收到借款时 会计科目怎么做
  • 自动结转制造费用生成不了凭证怎么办
  • 工程施工预付款20%的规定
  • 帝国cms灵动标签 PHP变量文章ID加减1
  • js中同步如何理解
  • 一般纳税人增值税可以抵扣吗
  • 车辆购置税如何在电子税务局缴纳
  • 差旅补助要计入成本吗
  • 建筑劳务公司需要什么资质
  • 企业所得税预缴申报表
  • 哪些情况属于
  • 残疾人报税怎么报
  • 医院绿化方案
  • 无偿调入的固定资产其贷方应计入
  • 政府补助的会计准则
  • 办理外经证后缴税怎么交
  • 行政事业单位福利费提取比例
  • 其他应收款的核算范围包括
  • 分公司有哪些特点
  • 专用发票怎么入账
  • 销售方开具的红字专票怎么入账
  • 临时工工资怎么入账合法吗
  • 资本和资产的区别举例说明
  • 物业管理企业应履行的义务包括
  • 在查询结果中添加字母
  • Mysql Explain 详细介绍
  • mysql数据库基本知识点总结
  • RSync文件备份同步 Linux服务器rsync同步配置图文教程
  • centosuuid
  • 电脑如何修改硬盘启动顺序
  • window8开机
  • win10系统预览版
  • linux ftp 服务
  • realshed.exe - realshed是什么进程 有什么用
  • 怎么把硬盘安装到电脑上
  • 微软windows1
  • win8使用教程和技能
  • win10安装完后有多大
  • windows8截图保存在哪里
  • preorder遍历
  • Unity符国新:3D技术将渗透到生活的各个方面
  • unityc#打不开
  • easyui messager alert 三秒后自动关闭提示的实例
  • jquery教程 csdn
  • unity接入安卓sdk
  • 江西税务局
  • 税务代办需要什么资料
  • 2020年小规模纳税人普票免税政策
  • 我国税收征收机关包括
  • 土地的几种类型
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设