登录
首页 » Android » 文件夹管理器

文件夹管理器

于 2023-08-17 发布 文件大小:974.94 kB
0 138
下载积分: 2 下载次数: 1

代码说明:

基于Android的文件夹管理器,可以实现基本的文件夹管理器的功能,识别文件类型,文件描述,管理手机上文件的增删改查复制新建等基本功能,界面也很算很炫吧,可以根据文件的类型匹配系统中的应用来操作该文件。基本能满足日常的需要吧。

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

发表评论

0 个回复

  • iOSDiner 例子源码下载(商业)
    iOSDiner 例子源码下载(商业)
    2015-02-27下载
    积分: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
  • Android版电子书开发模板源码
    这是一个关于读书软件的Android app,书的内容是明朝那些事,其中进入界面有个简单的动画效果,实现了显示目录,目录可选择,书的内容可翻页,书中内容的字体大小和颜色也都不错
    2022-07-23 04:15:12下载
    积分:1
  • android中不错的ExpandableListView实例效果源码
    一、ExpandableListView介绍     一个垂直滚动的显示两个级别(Child,Group)列表项的视图,列表项来自ExpandableListAdapter 。组可以单独展开。   1.重要方法       expandGroup(int groupPos) :在分组列表视图中展开一组,      setSelectedGroup(int groupPosition) :设置选择指定的组。      setSelectedChild(int groupPosition, int childPosition, boolean shouldExpandGroup) :设置选择指定的子项。      getPackedPositionGroup(long packedPosition) :返回所选择的组      getPackedPositionForChild(int groupPosition, int childPosition) :返回所选择的子项      getPackedPositionType(long packedPosition) :返回所选择项的类型(Child,Group)      isGroupExpanded(int groupPosition) :判断此组是否展开  2.代码:ExpandableListContextMenuInfo menuInfo=(ExpandableListContextMenuInfo)item.getMenuInfo();String title=((TextView)menuInfo.targetView).getText().toString();int type=ExpandableListView.getPackedPositionType(menuInfo.packedPosition);if (type==ExpandableListView.PACKED_POSITION_TYPE_CHILD) {int groupPos =ExpandableListView.getPackedPositionGroup(menuInfo.packedPosition);int childPos =ExpandableListView.getPackedPositionChild(menuInfo.packedPosition);二、ExpandableListAdapter    一个接口,将基础数据链接到一个ExpandableListView。此接口的实施将提供访问Child的数据(由组分类),并实例化的Child和Group。 getChildId(int groupPosition, int childPosition) 获取与在给定组给予孩子相关的数据。     getChildrenCount(int groupPosition) 返回在指定Group的Child数目。
    2013-03-07下载
    积分:1
  • Android 生成一个calender日历组件功能
    Android 生成一个calender日历组件功能,日历组件相信大家都知道是干什么的吧,calender可以让用户快速准确的去选择日期和时间传递给程序,以进行下一步的处理操作。本源码展示的是用Android源码,也就是Java去创建符合Android标准的calender日期选择器,我觉得是个挺不错的功能。而且里面的很多技巧是可以学习的。
    2022-08-03 00:58:06下载
    积分:1
  • WIFI2
    Android手机端通过WIFI获取WIFI ROBOT智能小车视频(MJPEG)源代码 (Android mobile client access via WIFI WIFI ROBOT smart car video (MJPEG) source code)
    2013-09-28 13:32:37下载
    积分:1
  • 5.4-SQLite
    Android 编程之数据库 SQLlite学习例子(an example for the learning of Android database)
    2012-06-24 03:44:23下载
    积分:1
  • greendao简单使用
    当下比较火的安卓数据数据库框架使用
    2017-04-20下载
    积分:1
  • android 网络电话
    实现android网络客户端,13. 网络传来的音频数据通过AudioTrack类进行播放。14. 本地的音频数据通过AudioRecord类进行录制。15. 在本地播放数据包中的视频流,可以先提取位图,再显示。由于系统没有提供直接播放的相关方法。16. 线程同步的方法 – synchronized17. F:sipdroid esdrawable 中的图标可以更换 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
    2022-01-25 15:55:32下载
    积分:1
  • 圆形图片
    圆形的图片处理,应用于头像上传,头像处理等一些头像方面的图片处理样式。圆形的图片处理,应用于头像上传,头像处理等一些头像方面的图片处理样式
    2023-01-17 12:00:03下载
    积分:1
  • 696516资源总数
  • 106648会员总数
  • 8今日下载