登录
首页 » Android » 计步器安卓程序

计步器安卓程序

于 2022-01-26 发布 文件大小:182.89 kB
0 170
下载积分: 2 下载次数: 1

代码说明:

统计穿戴者徒步行走的步数和距离,计算行走速度和消耗的热量。并且具有启动和关闭功能,还可以 对整个系统进行灵活的设置。

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

发表评论

0 个回复

  • 支付宝移动接口实例(android版)源码下载
    android 支付宝移动版接口实例,最低支持版本 android 2.2,也就是几乎所有版本都支持了
    2015-03-12下载
    积分:1
  • webview 加载进度条 (横向以及圆形loading)例子源码
    长形和圆形 webview加载 进度条
    2015-06-28下载
    积分:1
  • android中常用的一些工具类
    android中常用的一些工具类,比如对时间的处理 对字符串的处理,以及第三方的一些优秀的库
    2023-05-10 10:45:03下载
    积分:1
  • 仿支付密码框
    应用背景随着手机越来越普及,掌上支付已不是新鲜事物,模仿支付宝支付密码框。关键技术Android Dialog,自定义键盘样式,自定义View,添加键盘监听事件,实时重回画面。
    2023-02-20 01:35:04下载
    积分:1
  • Android 的隐式意图
    Android 的隐含意图是意图的基于应用程序描述如何它的功能可正常工作,只需单击该按钮以及我们如何分析此 url 和转到 web 站点上。
    2023-01-10 10:30:04下载
    积分:1
  • android open gl 示例代码下载
    [实例简介]Open GL 入门级示例 [实例截图] [核心代码]package com.china.gltry;import javax.microedition.khronos.egl.EGL10;import javax.microedition.khronos.egl.EGL11;import javax.microedition.khronos.egl.EGLConfig;import javax.microedition.khronos.egl.EGLContext;import javax.microedition.khronos.egl.EGLDisplay;import javax.microedition.khronos.egl.EGLSurface;import javax.microedition.khronos.opengles.GL;import android.view.SurfaceHolder;/** * An EGL helper class. */public class EGLHelper{ public EGLHelper() { } /** * Initialize EGL for a given configuration spec. * @param configSpec */ public void start(int[] configSpec){ /* * Get an EGL instance */ mEgl = (EGL10) EGLContext.getEGL(); /* * Get to the default display. */ mEglDisplay = mEgl.eglGetDisplay(EGL10.EGL_DEFAULT_DISPLAY); /* * We can now initialize EGL for that display */ int[] version = new int[2]; mEgl.eglInitialize(mEglDisplay, version); EGLConfig[] configs = new EGLConfig[1]; int[] num_config = new int[1]; mEgl.eglChooseConfig(mEglDisplay, configSpec, configs, 1, num_config); mEglConfig = configs[0]; /* * Create an OpenGL ES context. This must be done only once, an * OpenGL context is a somewhat heavy object. */ mEglContext = mEgl.eglCreateContext(mEglDisplay, mEglConfig, EGL10.EGL_NO_CONTEXT, null); mEglSurface = null; } /* * Create and return an OpenGL surface */ public GL createSurface(SurfaceHolder holder) { /* * The window size has changed, so we need to create a new * surface. */ if (mEglSurface != null) { /* * Unbind and destroy the old EGL surface, if * there is one. */ mEgl.eglMakeCurrent(mEglDisplay, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_CONTEXT); mEgl.eglDestroySurface(mEglDisplay, mEglSurface); } /* * Create an EGL surface we can render into. */ mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, mEglConfig, holder, null); /* * Before we can issue GL commands, we need to make sure * the context is current and bound to a surface. */ mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext); GL gl = mEglContext.getGL(); return gl; } /** * Display the current render surface. * @return false if the context has been lost. */ public boolean swap() { mEgl.eglSwapBuffers(mEglDisplay, mEglSurface); /* * Always check for EGL_CONTEXT_LOST, which means the context * and all associated data were lost (For instance because * the device went to sleep). We need to sleep until we * get a new surface. */ return mEgl.eglGetError() != EGL11.EGL_CONTEXT_LOST; } public void finish() { if (mEglSurface != null) { mEgl.eglMakeCurrent(mEglDisplay, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_CONTEXT); mEgl.eglDestroySurface(mEglDisplay, mEglSurface); mEglSurface = null; } if (mEglContext != null) { mEgl.eglDestroyContext(mEglDisplay, mEglContext); mEglContext = null; } if (mEglDisplay != null) { mEgl.eglTerminate(mEglDisplay); mEglDisplay = null; } } EGL10 mEgl; EGLDisplay mEglDisplay; EGLSurface mEglSurface; EGLConfig mEglConfig; EGLContext mEglContext;}
    2015-04-06下载
    积分:1
  • 翻译
    这个应用程序演示如何翻译文本从语言到另一种使用 bing api,您可以选择另一个语言和你想要从微调框转换为它的语言
    2022-03-17 06:15:29下载
    积分:1
  • android TextView、EditText和ImageView实例代码
    android TextView、EditText和ImageView实例代码
    2014-02-23下载
    积分:1
  • android 仿ios 自定义togglebutton例子源码下载(兼容低版本)
    android 仿ios 自定义togglebutton例子源码下载(兼容低版本)
    2015-04-15下载
    积分:1
  • T_ReboundAnim
    提供了android的gallary和gridview的反弹效果,如已经到头了,在按《-键或鼠标拖动,会有反弹效果(Provides the android gridview gallary and rebound effects, such as have already been explored, and in the press "- key or mouse to drag, there will be a rebound effect)
    2011-12-22 16:56:54下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载