登录
首页 » Android » 安卓记事本app

安卓记事本app

于 2022-02-04 发布 文件大小:31.95 MB
0 47
下载积分: 2 下载次数: 1

代码说明:

课设APP,简单的记事本,可以分享,有实时更新的功能,界面还是挺好看的,平时记事可用,方便简洁。大家可以下载来用。

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

发表评论

0 个回复

  • android 头像图片裁剪成圆形、心形、五角星等各种形状 例子源码下载
    android 头像图片裁剪成圆形、心形、五角星等各种形状 例子源码下载
    2015-04-26下载
    积分:1
  • 利用MATLAB进行弹道仿真源代码
    不可多得的导弹仿真源程序 非常的经典 绝对不会后悔
    2020-05-25下载
    积分:1
  • BaiduMapApi_Sample_Android_1.3.3
    百度地图的源代码,是android开发所用,适合想研究地图的人看(Baidu map code)
    2014-02-05 16:35:26下载
    积分:1
  • android view Animaton 动画例子
    android view Animaton 动画例子
    2015-06-26下载
    积分:1
  • 基于android的xmpp的即时通信客户端
    这是基于xmpp的安卓即时通信客户端,参照jitsi;有音视频聊天,共享桌面,传输文件等基础功能; 导入eclipse后,用户只需下载个openfire服务器配置好就可以直接运行啦
    2022-04-23 14:02:06下载
    积分:1
  • Android+天气预报加widget源码
    Android+天气预报加widget源码,Android+天气预报加widget源码vAndroid+天气预报加widget源码Android+天气预报加widget源码
    2022-02-24 12:23:27下载
    积分:1
  • Android快速开发框架Afinal
    Android快速开发框架AfinalAfinal是一个orm、ioc框架,遵循约定大于配置原则,无需任何配置即可完成所有工作,但也可以通过配置达到个人的个性化需求。Afinal提倡代码快速简洁,尽量一行代码完成的事情不会用两行。
    2015-01-20下载
    积分:1
  • viewpage_fragment
    Viewpage_Fragment 很不错的android多页面滑动效果实例,完整的Java源代码,创建时间:2013-8-2 下午4:56:15 ,基于android.support.v4.app.Fragment实现 让页面list,页面title list,滑动显示,在代码中定义适配器,得到每个页面,每个页面的title,得到页面的总个数,根据这些信息实现多页面的滑动。(Viewpage_Fragment very good android multi-page sliding effect instance, a complete Java source code, creation time :2013-8-2 4:56:15 pm based android.support.v4.app.Fragment achieve make the page list, the page title list, slide shows, adapters defined in the code, to get each page, each page s title, to get the total number of pages, according to the information page of multi-slide.)
    2013-09-22 22:05:23下载
    积分: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 android Gravity induction test 重力感应测试(android Gravity induction test )
    2012-12-23 16:42:02下载
    积分:1
  • 696522资源总数
  • 104031会员总数
  • 39今日下载