您好,欢迎光临本网站![请登录][注册会员]  
文件名称: Android GPS定位
  所属分类: Android
  开发工具:
  文件大小: 75kb
  下载次数: 0
  上传时间: 2012-06-17
  提 供 者: glory******
 详细说明: 多种GPS定位方式和定位研究开发心得,提供了百度定位 和 谷歌定位两种方式,基站、wifi、net定位。 google定位代码   package com.javenwong.google_gps; import android.app.Activity;import android.content.Context;import android.content.Intent;import android.location.Criteria;import android.location.Location;import android.location.LocationListener;import android.location.LocationManager;import android.os.Bundle;import android.widget.TextView;import android.widget.Toast; public class Google_gpsActivity extends Activity { TextView tv1;     /** Called when the activity is first create d. */    @Override    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.main);                        Intent i = new Intent(this, ServiceTest.class);         i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);         startService(i);         tv1 = (TextView) this.findViewById(R.id.tv1);                openGPSSettings();//        String ip=GetHostIp();//        tv1.setText(ip);//        Log.i("hello", "ip is"+ip);      //  getLocation();        //tv1.setText(ip);                    tv1.setText("hello");    }        private void openGPSSettings() {        LocationManager alm = (LocationManager) this                .getSystemService(Context.LOCATION_SERVICE);        if (alm                .isProviderEnabled(android.location.LocationManager.NETWORK_PROVIDER)) {            Toast.makeText(this, "Net模块正常", Toast.LENGTH_SHORT)                    .show();            return;        }         Toast.makeText(this, "请开启GPS!", Toast.LENGTH_SHORT).show();//        Intent intent = new Intent(Settings.ACTION_SECURITY_SETTINGS);//        startActivityForResult(intent,0); //此为设置完成后返回到获取界面     } ...... ...展开收缩
(系统自动生成,下载前可以参看下载内容)

下载文件列表

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度
  • 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.
 相关搜索: Android 定位 GPS
 输入关键字,在本站1000多万海量源码库中尽情搜索: