登录
首页 » Android » 即时短信报警

即时短信报警

于 2022-02-25 发布 文件大小:9.58 MB
0 59
下载积分: 2 下载次数: 1

代码说明:

当你忘了什么事件等,生日...即时短信就在那里您可以轻松发送

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

发表评论

0 个回复

  • 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
  • 记账本
    简易记账表,内含饼状图,根据记账内容实现饼状图的实时变化。记录账目出入在主界面实时显示收入支出数目,内含登录注册功能。
    2022-02-24 19:56:56下载
    积分:1
  • android 文件读写 例子源码下载
    android 文件读写 例子源码下载
    2015-03-07下载
    积分:1
  • Android Holo风格的AlertDialog对话框制作实例
    Android 自定义实现一个AlertDialog对话框,提示框或警告框弹出式对话框,套用了系统Holo风格,生成符合系统主题的AlertDialog.Builder,可以分别定义弹出提示的标题文字及提示内容:   builder.setTitle("Test Title");   builder.setMessage("Test Message");   // 这里设置点击事件null,再重新写点击事件,屏蔽点击之后对话框消失   如界面所示,单击上边的按钮后,弹出Holo风格的对话框,单击下边则弹出默认的黑色风格弹出框。
    2022-03-31 02:25:08下载
    积分:1
  • android Preference
    android Preference挺不错的例子 与入门的同学们共勉
    2022-03-24 19:31:02下载
    积分:1
  • 简单音乐播放器
    简单的音乐播放器,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
    2022-08-15 10:54:31下载
    积分:1
  • imageComparator
    android平台上利用OpenCV的不同算法进行图像的比较,包括ORB, BRIEF, BRISK和FREAK算法(use the android platform to compare different algorithms OpenCV image, comprising ORB, BRIEF, BRISK and FREAK algorithm)
    2015-08-26 15:25:18下载
    积分:1
  • Android-Total(5)
    关于android开发技巧总汇系系列5,内容总结的不错,值得参考(Department on android development skills confluence Series 5, the content summary of good, valuable reference)
    2013-07-12 12:56:58下载
    积分:1
  • 抽屉布局图
    安卓导航抽屉是一一个最常用的设计
    2022-03-18 02:30:18下载
    积分:1
  • unity 与 Android讯飞语音通信 demo
    unity 与 Android讯飞语音通信  demo。 unity 与 Android讯飞语音通信  demo。 unity 与 Android讯飞语音通信  demo。
    2022-12-21 05:25:04下载
    积分:1
  • 696518资源总数
  • 104226会员总数
  • 29今日下载