登录
首页 » Java » fasongsms

fasongsms

于 2013-06-02 发布 文件大小:1012KB
0 202
下载积分: 1 下载次数: 6

代码说明:

  这是一个安卓程序,主要功能是发送短信,希望与大家分享。(This is an Android program, the main function is to send text messages.)

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

发表评论

0 个回复

  • MyDiary
    记事本APP,记事可以分享,虽然小但比较完整(Notepad APP, Notepad can share)
    2017-07-01 16:27:43下载
    积分:1
  • hr_main.sql
    There are a lot of materials mention the hr_main.sql for test, but I can"t find it in the $ORACLE_HOME/demo/schema/human_resources/; so enjoy it for you and wish to help U
    2023-04-05 19:35:04下载
    积分:1
  • adb
    ADB to communicate between PC and Android smartphone
    2019-07-05 05:08:36下载
    积分:1
  • EntryTest
    Entry Test Source Code for Andriod.
    2013-11-12 11:44:19下载
    积分:1
  • STM32F103RCT6最小系统板和原理图
    STM32F103RCT6最小系统板和原理图,Altium designer16工程文件,实际测过可用
    2019-04-15下载
    积分:1
  • android 循环轮播图片 viewpager 焦点图 实例源码下载
    android 循环轮播图片 viewpager 焦点图 实例源码下载
    2015-02-25下载
    积分:1
  • android 省市区三级联动效果
    android 省市区三级联动效果
    2014-05-30下载
    积分:1
  • 你画我猜
    你画我猜的初级版 自己做的 里面的图标 sql部分没改过  
    2022-02-01 04:31:38下载
    积分: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 scan picture
    案例设计完成了以款简单的能够浏览手机内部图片的安卓小程序,提供源代码。使用Eclipse 集成开发环境,利用SDK 开发工具,编写完代码后,在AVD虚拟手机上进行过验证,保证了程序的正常无误后,生成APK文件,下载到手机后,安装APPl,在手机上能够正常运行。本案例是基于android 4.3平台上编写搭建。
    2023-09-03 17:10:03下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载