登录
首页 » Android » NFC操作模块

NFC操作模块

于 2022-06-13 发布 文件大小:2.46 MB
0 98
下载积分: 2 下载次数: 1

代码说明:

此为一款读写NFC数据的项目框架,网络框架采用了Retrofit+RxJava的架构

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

发表评论

0 个回复

  • logcount
    android小程序,用来查找手机中的log文件,并统计log文件的数量,用于手机安全软件进行手机内log文件清理(android small program used to find the phone log files and statistics log file number of security software for mobile phone log file cleanup)
    2013-11-06 14:44:50下载
    积分:1
  • 安卓小游戏,接小黄人
    具有登录注册功能,在登录后进入游戏界面,能够实现积分计数、排序功能,设有游戏排行榜。在规定的时间内接住下落的小黄人,具有倒计时的功能,游戏界面有暂停、继续、退出、显示积分、本次积分、最高积分等功能。
    2023-05-11 02:15:03下载
    积分:1
  • CSeq
    CSeq SIP Header Source Code for Andriod.
    2013-11-04 10:17:15下载
    积分:1
  • Android GPS定位并发短信实例
    Android定位:监控别人行踪,GPS定位相关实例,开启定位,并发送和回复短信。了解一下如何打开GPS,如何查看GPS状态等。如果是符合的ACTION,就启动地理定位并且回复短信,发送短信, 定位失败,则不回复短信,获取到的定位信息,包括时间、纬度、经度、误差径、速度、卫星、地址等。分析短信,包括了以下步骤:   第一步、获取短信的内容和发件人   第二步:确认该短信内容是否满足过滤条件   第三步:取消往下传播,并且定位回复短信
    2022-02-22 12:29:05下载
    积分:1
  • XMPP实例源码下载(Android客户端的实现+_Tomcat版的Androidpn)
    XMPP实例源码下载(Android客户端的实现+_Tomcat版的Androidpn)
    2014-08-25下载
    积分: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
  • 整合手机功能的app
    个人在寒假做的app,比较的low,主要是地图导航,还包含一些手机整合的小工具,当然界面的设计对于我来说比较垃圾,我现在还只是一名初级开发者,刚刚学会如何开发。上传是希望得到前辈们的指点,就此进步。
    2022-02-01 14:24:40下载
    积分:1
  • android-2409SDK
    库使用方法: 1、解压libs.zip; 2、将libs文件夹直接拷贝到工程根目录下。 (Library use: 1, extract libs.zip 2, the libs folder copy directly to the project root directory.)
    2013-06-13 11:42:48下载
    积分:1
  • 安卓蓝牙连接
    这是一款基于蓝牙连接的安卓程序,可以让新手迅速上手安卓蓝牙的开发。通过导入到Eclipse中可以快速的查看到陌生类和方法的API,从而可以快速了解到安卓拉亚的连接,通过socket发送和接受信息。
    2023-04-30 06:40:04下载
    积分:1
  • Android二维码扫描源码
    【实例简介】Android二维码扫描源码
    2021-11-16 00:32:59下载
    积分:1
  • 696518资源总数
  • 106164会员总数
  • 18今日下载