登录
首页 » Java » android WIN8系统 磁贴点击下沉倾斜效果源码下载

android WIN8系统 磁贴点击下沉倾斜效果源码下载

于 2014-08-24 发布
0 66
下载积分: 1 下载次数: 0

代码说明:

android WIN8系统 磁贴点击下沉倾斜效果源码下载

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

发表评论

0 个回复

  • Android串口工具DEMO.rar
    【实例简介】ndk 串口读卡
    2021-08-11 00:31:01下载
    积分:1
  • android textview 自动换行 例子
    textview 自动换行
    2014-09-16下载
    积分:1
  • android 时光轴 例子源码下载
    时光轴 向下拉比较炫
    2014-12-10下载
    积分:1
  • android 联系人分类排序
    android 联系人分类排序
    2014-03-14下载
    积分: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
  • 仿电商前系统
    【实例简介】仿电商前台系统 :若有疑问,可以先访问服务器中的半成品项目:http://121.40.92.4:8080/MI_Front/   ;因为后面还完善了购物车,订单等功能,没有部署到服务器,初始账号:123456;密码:123
    2021-12-06 00:38:59下载
    积分:1
  • 一款好用的指南针app源码(android)
    AS可直接打开使用AS可直接打开使用
    2019-03-24下载
    积分:1
  • android animation 实例
    android animation 实例
    2013-05-24下载
    积分:1
  • android 具有阻尼效果的ScrollView 实例源码下载
    android 具有阻尼效果的ScrollView 实例源码下载
    2014-11-04下载
    积分:1
  • 安卓医院预约系统+ 服务端(不含sql脚本)
    这例子子就是安卓医院预约系统 加 服务端,可以用来大家学习安卓的开发的一个方向本项目是一个简单的医院挂号项目源码,实现了病人在安卓手机上登录、注册、挂号、查看医生信息等功能。实现原理是app端与web服务端做交互,然后web服务端再去调用mysql数据库里面的内容,维护mysql数据内容的时候直接在web服务端进行维护本项目暂时没有数据库,只有j2ee服务端源码和安卓客户端源码,所以只能给大家截两个登录注册的图,如果想看其他界面效果的话可以自己根据服务端srccomhospital下的model层里面的字段建表,我看了一下工程量也不大,就四个表,几个字段。有mysql或者mssql基础的人真想弄的话半小时内肯定可以把表建起来。时间有限我就不给大家弄数据库这一块了,感兴趣的朋友可以自己下载看一下。
    2020-12-03下载
    积分:1
  • 696524资源总数
  • 103855会员总数
  • 91今日下载