登录
首页 » Java » TestWeiXinWhatsNew

TestWeiXinWhatsNew

于 2013-07-31 发布 文件大小:1793KB
0 151
下载积分: 1 下载次数: 20

代码说明:

  Android模仿的微信导航页效果,Java源码下载,用过Android手机的话,应该都对微信的导航页不陌生,本例子用JAva模仿的微信导航页界面效果,学习界面编程的可下载参考。(Android imitation micro-channel navigation page effect, Java source code download, used Android phone, it should have on the micro-channel navigation pages are not unfamiliar, this example uses JAva imitation micro-channel navigation page interface effects, learning programming interface can be downloaded for reference.)

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

发表评论

0 个回复

  • LDA主题模型最终版
    这是本人做科研研究用的LDA模型,项目中集成了分词系统,可针对单个文件、多个文件夹进行建模。输出结果生成4个文件.word(主题-特征词矩阵)、.theta文件(文档-主题矩阵,.phi的转置)、.phi文件(主题-文档矩阵)、.params文件(参数配置文件)。
    2022-04-23 08:26:26下载
    积分:1
  • tab host
    tab host
    2013-06-09下载
    积分: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
  • libfreenect实例
    libfreenect控制kinect的例子,包括kinect电机的运动等功能。
    2022-03-21 21:14:01下载
    积分:1
  • 后台信息管理
    应用背景 个人课余时间研究技术。自己接私单。拓展思路。学习java技术。了解最前沿的html,js信息。 很好的web框架。为你提供全面的说明。 关键技术后台信息管理,支持html5,很炫的页面效果。强大的微信接口,强大的邮件接口。很方便的权限管理。web.js的及时通讯系统。很方便的cms系统。
    2022-04-01 19:54:33下载
    积分:1
  • AndroidGesturePassword
    安卓手机的手势密码源码,用户可以设置九宫格密码并校验。(gesture password on android)
    2013-12-14 20:35:19下载
    积分:1
  • JSON数据格式入门教程
    Json数据格式入门教程,简介:JSON 即 JavaScript Object Natation,它是一种轻量级的数据交换格式,非常适合于服务 器与 JavaScript 的交互。本文将快速讲解 JSON 格式,并通过代码示例演示如何分别在 客户端和服务器端进行 JSON 格式数据的处理。
    2022-09-22 21:45:03下载
    积分:1
  • 一款好用的指南针app源码(android)
    AS可直接打开使用AS可直接打开使用
    2019-03-24下载
    积分:1
  • confirm__brevkpoint__random
    说明:  自适应滤波器理论一书第五章的有关程序,希望对大家有用(The procedure in chapter 5 of the theory of adaptive filter, I hope it will be useful to all of us.)
    2019-03-28 13:06:32下载
    积分:1
  • 手机控制PC端PPT源码
      @Override     public void onCreate(Bundle savedInstanceState) {         super.onCreate(savedInstanceState);         setContentView(R.layout.main);                  try { //sock = new Socket(InetAddress.getByName("125.71.69.199"),2011);         sock = new Socket(InetAddress.getByName("192.168.11.254"),8080);         请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
    2023-02-21 02:20:03下载
    积分:1
  • 696518资源总数
  • 106161会员总数
  • 5今日下载