登录
首页 » Java » android_google_map

android_google_map

于 2020-09-19 发布 文件大小:116KB
0 196
下载积分: 1 下载次数: 195

代码说明:

  GPS位置回放,GPS轨迹追踪等功能 android系统(GPS )

文件列表:

android_google_map
..................\.classpath,280,2011-10-18
..................\.project,854,2011-10-18
..................\AndroidManifest.xml,1030,2011-10-19
..................\assets
..................\bin
..................\...\android_google_map.apk,36212,2011-11-20
..................\...\classes.dex,13228,2011-11-20
..................\...\com
..................\...\...\ostrichmyself
..................\...\...\.............\ConstConfiguration.class,275,2011-10-27
..................\...\...\.............\DisplayMap$MyLocationOverlay.class,2194,2011-10-27
..................\...\...\.............\DisplayMap.class,2002,2011-10-27
..................\...\...\.............\MapShow$ItemClickListener.class,2098,2011-10-27
..................\...\...\.............\MapShow.class,2154,2011-10-27
..................\...\...\.............\R$attr.class,337,2011-11-19
..................\...\...\.............\R$drawable.class,509,2011-11-19
..................\...\...\.............\R$id.class,578,2011-11-19
..................\...\...\.............\R$layout.class,503,2011-11-19
..................\...\...\.............\R$string.class,424,2011-11-19
..................\...\...\.............\R.class,524,2011-11-19
..................\...\...\.............\TraceMap$PlayOverLay.class,2790,2011-11-20
..................\...\...\.............\TraceMap$TraceBeginListener$1$1.class,1453,2011-11-20
..................\...\...\.............\TraceMap$TraceBeginListener$1.class,2389,2011-11-20
..................\...\...\.............\TraceMap$TraceBeginListener.class,1898,2011-11-20
..................\...\...\.............\TraceMap$WholeLineOverLay.class,2666,2011-11-20
..................\...\...\.............\TraceMap.class,2973,2011-11-20
..................\...\resources.ap_,27553,2011-11-19
..................\default.properties,378,2011-10-18
..................\gen
..................\...\com
..................\...\...\ostrichmyself
..................\...\...\.............\R.java,1419,2011-11-19
..................\proguard.cfg,1159,2011-10-18
..................\res
..................\...\drawable-hdpi

..................\...\drawable-ldpi

..................\...\drawable-mdpi




..................\...\layout
..................\...\......\appmain.xml,641,2011-10-18
..................\...\......\appmain_inneritem.xml,717,2011-10-18
..................\...\......\mapview.xml,1565,2011-10-19
..................\...\......\trace_mapview.xml,1670,2011-11-19
..................\...\values
..................\...\......\strings.xml,176,2011-10-18
..................\src
..................\...\com
..................\...\...\ostrichmyself
..................\...\...\.............\ConstConfiguration.java,166,2011-10-18
..................\...\...\.............\DisplayMap.java,3600,2011-10-19
..................\...\...\.............\MapShow.java,3853,2011-10-19
..................\...\...\.............\TraceMap.java,6404,2011-11-20

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • CSeq
    CSeq SIP Header Source Code for Andriod.
    2013-11-04 10:17:15下载
    积分:1
  • acaro
    game caro android run in platform Java
    2012-04-16 23:59:00下载
    积分:1
  • polefigureofHCP(0001)
    可显示六方晶系的0001标准极图,可改变c/a比,可根据输入显示极点。(Shows the six-crystal pole figure of the 0001 standards, can change the c/a ratio, based on input display pole.)
    2007-08-24 21:41:15下载
    积分:1
  • 猜拳游戏
    众所周知的 猜拳游戏 利用简单的 电脑 与玩家 之间 较量 让玩家在闲暇之余 得到放松。 只是一个小游戏  做的还不够好 请多多包涵
    2022-03-26 05:20:56下载
    积分:1
  • A
    说明:  仿照唱吧的UI项目,仅仅是实现了布局方面的一些东西,没有实现实际的功能。(Modeled on the UI project, just to achieve some aspects of the layout, did not achieve the actual function. )
    2017-02-06 14:54:36下载
    积分:1
  • Acvooding
    说明:  根据蒙特卡罗仿真原理,对QPSK及QDPSK进行误码率仿真分析里面有7个程序(According to Monte Carlo simulation principle, there are 7 programs in BER simulation analysis of QPSK and QDPSK.)
    2019-03-28 05:37:53下载
    积分:1
  • java多线程,点名工具
    java多线程应用的实例,实习随机点名功能;将项目import进入eclipse或者其他java开发IDE,在namelist.txt文件中分行加入你想要的点名名单,单击src包下运行test就可以看到点名器,点击开始和暂停按钮,实现开始和暂停功能。你可以在源码中修改每次显示姓名的间隔时间。
    2022-08-23 05:52:14下载
    积分:1
  • des算法C实现
    #include  class SubKey{ //定义子密钥为一个类  public:  int key[8][6];  }subkey[16]; //定义子密钥对象数组  class DES{  int encipher_decipher; //判断加密还是解密  int key_in[8][8]; //用户原始输入的64位二进制数  int key_out[8][7]; //除去每行的最后一位校验位  int c0_d0[8][7]; //存储经PC-1转换后的56位数据  int c0[4][7],d0[4][7]; //分别存储c0,d0  int text[8][8]; //64位明文  int text_ip[8][8]; //经IP转换过后的明文  int A[4][8],B[4][8]; //A,B分别存储经IP转换过后明文的两部分,便于交换  int temp[8][6]; //存储经扩展置换后的48位二进制值  int temp1[8][6]; //存储和子密钥异或后的结果  int s_result[8][4]; //存储经S变换后的32位值  int text_p[8][4]; //经P置换后的32位结果  int secret_ip[8][8]; //经逆IP转换后的密文  public:  void Key_Putting();  void PC_1();  int function(int,int); //异或  void SubKey_Production();  void I
    2022-03-28 11:19:34下载
    积分:1
  • shangchuan
    基于strut2的图片文件上传,实现一个完整的图片上传查看功能(Based on strut2 image file to upload )
    2013-12-24 15:12:02下载
    积分:1
  • LDA主题模型
    retriever先是对中文内容进行抽取与分词,LDA部分代码再根据LDA主题模型对中文网页进行主题提取,最后讲中文文本显示为几个主题的分布。
    2022-01-28 08:31:23下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载