登录
首页 » Delphi » TakePhoto

TakePhoto

于 2021-02-19 发布 文件大小:8404KB
0 273
下载积分: 1 下载次数: 5

代码说明:

  Take photo in android delphi app

文件列表:

TakePhoto
.........\Android
.........\.......\Debug
.........\.......\.....\AndroidManifest.xml,2371,2016-11-26
.........\.......\.....\TakePhoto
.........\.......\.....\.........\AndroidManifest.xml,2371,2016-11-26
.........\.......\.....\.........\assets
.........\.......\.....\.........\bin
.........\.......\.....\.........\...\TakePhoto.apk,8313769,2016-11-26
.........\.......\.....\.........\classes
.........\.......\.....\.........\.......\classes.dex,1338868,2016-11-26
.........\.......\.....\.........\debug
.........\.......\.....\.........\library
.........\.......\.....\.........\.......\lib
.........\.......\.....\.........\.......\...\armeabi
.........\.......\.....\.........\.......\...\.......\gdbserver,268812,2016-11-26
.........\.......\.....\.........\res
.........\.......\.....\.........\...\drawable-hdpi

.........\.......\.....\.........\...\drawable-ldpi
.........\.......\.....\.........\...\.............\ic_launcher.png
.........\.......\.....\.........\...\drawable-mdpi

.........\.......\.....\.........\...\drawable-xhdpi

.........\.......\.....\.........\...\drawable-xxhdpi

.........\.......\.....\TakePhoto.vsr,101,2016-11-26
.........\AndroidManifest.template.xml,1664,2016-11-26
.........\FormularioConfiguracion.fmx,727,2016-11-26
.........\FormularioConfiguracion.pas,594,2016-11-26
.........\FormularioPrincipal.fmx,3494,2016-11-26
.........\FormularioPrincipal.pas,3179,2016-11-26
.........\TakePhoto.deployproj,3774,2016-11-26
.........\TakePhoto.dpr,434,2016-11-26
.........\TakePhoto.dproj,29056,2016-11-26
.........\TakePhoto.dproj.local,2088,2016-11-26
.........\TakePhoto.identcache,392,2016-11-26
.........\TakePhoto.res,756,2016-11-26
.........\TakePhoto.stat,162,2016-11-26
.........\Unit1.fmx,3136,2016-11-26
.........\Unit1.pas,2921,2016-11-26
.........\Unit2.pas,3629,2016-11-26
.........\Win32
.........\.....\Debug

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

发表评论

0 个回复

  • com.baidu.mapapi.overlay
    绘制百度地图的自我规划路线图,为百度地图演示(Self-planning road map for drawing Baidu map, demo for Baidu map)
    2019-03-14 12:18:58下载
    积分:1
  • android ebook 源码
    android ebook 源码
    2014-06-17下载
    积分:1
  • Android 查看时间日期的应用(Android高级控件的及应用-03_14).zip
    Android 查看时间日期的应用(Android高级控件的开发及应用-03_14).zip
    2019-10-06下载
    积分: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
  • Sound-detection-size-Android
    Android检测声音大小代码及其解释说明,很多吹气球的游戏就是基于此类。(Size Android code and detecting sound explanation, a lot of blowing the game is based on the type of balloon.)
    2011-06-29 15:38:58下载
    积分:1
  • andriod
    有关于安卓的景物实例,主要介绍旅游景点的浏览页面。(There are examples on the scene Andrews)
    2020-12-27 16:59:03下载
    积分:1
  • android 多文件上传(有进度条)例子源码
    用于多文件上传到服务器,并且有进度条提示
    2015-05-29下载
    积分:1
  • android txt阅读器 实例源码
    android txt阅读器 实例源码
    2015-01-06下载
    积分:1
  • ViewGroup_MarginLayoutParamsTest
    View Group_ Margin Layout Params Test extends Android Test Case.
    2014-02-27 11:50:28下载
    积分:1
  • BreakIterator
    Break Iterator Source Code for Andriod.
    2013-11-18 22:21:22下载
    积分:1
  • 696518资源总数
  • 105885会员总数
  • 31今日下载