登录
首页 » Android » java 二维码生成,包括插入个性图标

java 二维码生成,包括插入个性图标

于 2022-02-13 发布 文件大小:1.50 kB
0 127
下载积分: 2 下载次数: 1

代码说明:

应用背景各.种.网络当面付的自动售卖项目中.使.用.的.二.维.码.java api,已经完美插入个性图标~~接入方便,只.需.要.输.入qrcode的字.符.串.就.可.以.关键技术 生.成.自.定.义.个.性.图.案.的.二.维.码.过程api,完.美.接.入.无.需.要.第.三.方.jar包.方.便.各.位.大.猿.接.入.自.己.的.项.目....

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

发表评论

0 个回复

  • Android之socket
    通过socket实现对服务器的通信。使带有wifi模块的单片机能够进行无线控制,例如继电器,步进电机等等。
    2022-01-26 02:15:32下载
    积分:1
  • bms(终版)
    实现WIFI环境下的以太网通信,在手机上监控BMS的运行参数(Realize the Ethernet communication in WIFI environment, monitor the operation parameters of BMS on the mobile phone)
    2017-11-23 13:17:13下载
    积分:1
  • eoe社区 Android 客户端
    eoe社区 Android 客户端.eoe 移动开发者论坛是中国最大最活跃的移动开发者社区,聚集了超过100万安卓开发者,提供大量android开发教程、android开发视频。
    2022-09-04 00:35:03下载
    积分:1
  • 简单的用户注册及登陆
    简单用户信息注册登陆开发代码,适合初学者
    2022-12-04 14:50:03下载
    积分:1
  • Shared Preferences project
    在这个项目中,我们正在创建一个android应用程序,它包含以下内容。
    2022-02-11 20:01:33下载
    积分:1
  • 可拖动列表项
    android端可拖拽下拉滑动上下移动排序,android端可拖拽下拉滑动上下移动排序,android端可拖拽下拉滑动上下移动排序,android端可拖拽下拉滑动上下移动排序,android端可拖拽下拉滑动上下移动排序,android端可拖拽下拉滑动上下移动排序。
    2022-02-04 20:51:30下载
    积分:1
  • channel
    COST207信道模型,对于信道仿真的时候非常有用(COST207 channel model is useful for channel simulation)
    2018-09-27 19:19:36下载
    积分:1
  • test_so
    android ndk调用的一个小例子, 可根据输入得到不同的输出,输入1得到2,其他得到3(android ndk sample)
    2013-08-05 10:38:19下载
    积分:1
  • R语言quantmod包写的带界面的MACD回测小例子
    需要安装R语言环境和相关开发包,利用library(gWidgetsRGtk2)建立的gui环境,代码中有具体的注释,一个是gui图形的环境,一个是macd回测,可以把代码复制到R中直接运行,联网下载开发包 
    2023-07-09 06:50:02下载
    积分: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
  • 696518资源总数
  • 105877会员总数
  • 14今日下载