登录
首页 » Java » SDFileExplorerme

SDFileExplorerme

于 2012-08-20 发布 文件大小:123KB
0 208
下载积分: 1 下载次数: 7

代码说明:

  android客户端方式实现文件浏览器功能(Implementation file browser function)

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

发表评论

0 个回复

  • testWebService
    一个简单的webservice测试的程序,给初学者们学习用(A simple webservice testing procedures for beginners to learn to use)
    2014-04-28 15:38:23下载
    积分:1
  • 滑动效果
    滑动效果
    2015-01-18下载
    积分:1
  • note
    说明:  JSP,struts1.*框架,MVC结构,留言板,可以帮助学习Struts。(JSP, struts1 .* framework, MVC structure, message board, can help to learn Struts.)
    2008-12-04 15:15:56下载
    积分:1
  • 在Java Socket编程(服务器)
    插座是为一个客户机程序和在网络中的服务器程序之间的通信的方法。套接字被定义为“在连接端点。”套接字创建和使用的一组编程的请求或“函数调用”的使用有时称为套接字的应用程序编程接口(API)。最常见的套接字API是Berkeley UNIX C接口的插座。插座也可用于相同的计算机中的进程之间的通信。 这是从在因特网的“无连接”的上下文,服务器应用程序的套接字的请求的典型序列,其中一个服务器处理许多客户请求,不保持连接长于直接请求的服务
    2023-04-16 16:15:03下载
    积分:1
  • 在线考试系统
    在线考试系统是一个在线的应用程序,将主办一系列的测试客观的问题,这个项目分为两个模块学生和管理员,管理员可以管理学生、 问题、 话题等。还有其他一般的设施。整个项目嵌入与会话跟踪,每一模块均自 qwn 会话管理和东西。所有的代码在这里给出了包括数据库设计与虚拟数据集的查询。我不得不做大量的工作,使它成为可能。任何反馈被赞赏。因此,享受。
    2022-06-26 17:50:40下载
    积分:1
  • 安卓阅读器源码
    基于安卓编写的文本阅读器,有较全的菜单,支持txt,word,pdf,xml等各种格式的文件,实现上下翻页,书签,模糊查询,字体放大,颜色改变等基础功能,功能较强大,初学者请在大婶指导下细心学习。
    2023-04-12 19:50:04下载
    积分:1
  • android-mqtt-sample
    很好的android mqtt协议源代码及demo。(Good mqtt protocol android source code, including the demo.)
    2014-11-17 09:54:57下载
    积分:1
  • CloudSim环境的建设
    这将展示如何与一个主机创建数据中心,并在其上运行两个cloudlets。在虚拟机的使用相同的MIPS要求运行cloudlets。该cloudlets将采取同样的时间来完成执行。提供虚拟云环境,可进一步研究云计算中使用。
    2022-08-16 00:36:59下载
    积分:1
  • android SharedPreferences数据存储 增删改例子源码
    android SharedPreferences数据存储 增删改例子源码
    2015-02-15下载
    积分: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
  • 696516资源总数
  • 106457会员总数
  • 15今日下载