-
微信公众号获取用户openId及用户信息
在开发微信公众号时,一旦用户关注了微信公众号,用户后续的操作已经跟用户的信息进行了绑定,那这些绑定的信息其它是通过OpenId进行的,每个用户关注不同的微信公众号时会产生唯一且不同的OpenId, OpenId相应于用户唯一主键
- 2018-03-07下载
- 积分:1
-
code by code
测试帖,51cto的代码
Real time worldwide stock quotes,finance/business/stock/company news,charts,twitters,portfolios,etc; Can synced with Google Finance portfolios,and news from Google Finance,Yahoo Finance,Bloomberg etc, it’s fast and easy, rich and realtime, also with alerts、memos、messages、backup and shares, also total free!
★ 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2023-01-31 01:35:04下载
- 积分:1
-
Rabit兔子跳铃铛 android游戏源代码参考
Rabit兔子跳铃铛 android游戏源代码参考,这个游戏我没玩过,就是那种跳来跳去的游戏,不知道怎么玩,也不知道如何介绍给大家,从资源文件看,很完整,源代码可在安卓模拟器中运行,运行的效果界面如截图所示,可以从中学习一些比较系统综合的Android开发技巧,一般情况下,编写游戏对Android各个模块的应用都比较综合,因此提升Android开发水平,可多参考一下游戏源代码。
- 2022-08-12 19:56:23下载
- 积分:1
-
android平台音频网络传输,编码和解码播放
android平台音频网络传输,编码和解码播放,G711格式编码解码和编码
- 2022-06-29 01:01:04下载
- 积分:1
-
android 从相册选择一张或者多张图片例子源码下载
android 从相册选择一张或者多张图片例子源码下载
- 2015-05-08下载
- 积分:1
-
Android 下 View Pager 显示 远程网络图片 例子
Android 下 View Pager 显示 远程网络图片 例子
- 2013-07-05下载
- 积分:1
-
DIY-demokit
google adk DIY demokit开发应用程序源码,用于android adk开发(google adk DIY demokit development application source code, developed for android adk
)
- 2012-01-07 16:37:29下载
- 积分:1
-
Android-music-player-source
安卓音乐播放器源码,附带详细word文档说明。(Android music player source, with a detailed documentation.)
- 2013-08-05 20:50:01下载
- 积分:1
-
BluetoothCar
基于android的蓝牙控制小车控制端,源码,eclipse编译下载到Android 2.3.3手机上,运行成功!用户可以根据自己的手机自行配置,重新编译下载即可。(Android based bluetooth control car control terminal, source code, eclipse compiler download to Android 2.3.3 phone, run successfully! Users can configure their own according to their phones, recompile download.)
- 2020-10-23 15:37:22下载
- 积分:1
-
远程视频监控
【核心代码】 public interface CameraSource { static final String LOG_TAG = "camera"; /** * Open the camera source for subsequent use via calls to capture(). * * @return true if the camera source was successfully opened. */ boolean open(); /** * Close the camera source. Calling close on a closed CameraSource is * permitted but has no effect. The camera source may be reopened after * being closed. */ void close(); /** * The width of the captured image. * * @return the width of the capture in pixels */ int getWidth(); /** * The height of the captured image. * * @return the height of the capture in pixels */ int getHeight(); /** * Attempts to render the current camera view onto the supplied canvas. * The capture will be rendered into the rectangle (0,0,width,height). * Outstanding transformations on the canvas may alter this. * * @param canvas the canvas to which the captured pixel data will be written * @return true iff a frame was successfully written to the canvas */ boolean capture(Canvas canvas); boolean saveImage(String savePath, String fileName); }
- 2013-12-04下载
- 积分:1