登录
首页 » Unix_Linux » EnumSetTest

EnumSetTest

于 2013-10-28 发布 文件大小:7KB
0 250
下载积分: 1 下载次数: 7

代码说明:

  Enum Set Test Source Code for Andriod.

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

发表评论

0 个回复

  • 2410
    the embeede system develop file,you can find you want in this file,beacues this file is very usefull,it is for the software engineer and the hardware engineer both in english and chinese.the embeede system develop file,you can find you want in this file,beacues this file is very usefull,it is for the software engineer and the hardware engineer both in english and chinese.
    2009-10-15 09:22:03下载
    积分:1
  • MNVETJM014
    本控件基于GSM Modem工作,不需要使用电话语音卡设备,不但具备普通电话语音卡功能,还具备手机短信收发功能, 语音与短信()
    2018-04-21 20:39:11下载
    积分:1
  • qqExListView
    详细介绍 - [ 仿QQ多级列表框源码 ] Android 仿QQ多级列表框实现。(Detailed- [imitation QQ multi-level list box source] Implementation of Android imitation QQ multilevel list box.)
    2016-06-05 18:37:37下载
    积分:1
  • CalendarDemo
    Android下的一个行事历,读写和写入实例,导入即可使用,请需要的下载(Android read and write calendar event demo,need to download)
    2014-06-18 14:18:33下载
    积分:1
  • android 实现调用系统相机拍照,并且存到sd卡 实例 附完整源码
    一个demo,实现调用系统相机拍照,将其显示在屏幕上,并且存到sd卡。     Android中实现拍照有两种方法,一种是调用系统自带的相机,然后使用其返回的照片数据。 还有一种是自己用Camera类和其他相关类实现相机功能,这种方法定制度比较高,洗染也比较复杂,一般平常的应用只需使用第一种即可。 用Intent启动相机的代码:Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);startActivityForResult(intent, 1); 拍完照后就可以在onActivityResult(int requestCode, int resultCode, Intent data)中获取到Bitmap对象了。Bitmap bitmap = (Bitmap) data.getExtras().get("data"); 要将图像存储到sd卡之前最好先检查一下sd卡是否可用     String sdStatus = Environment.getExternalStorageState();            if (!sdStatus.equals(Environment.MEDIA_MOUNTED)) { // 检测sd是否可用                Log.v("TestFile",                        "SD card is not avaiable/writeable right now.");                return;            }   以下代码可以实现将图像文件存到“sdcard/myImage/”文件夹下,名称为“111.jpg”            File file = new File("/sdcard/myImage/");            file.mkdirs();// 创建文件夹            String fileName = "/sdcard/myImage/111.jpg";             try {                b = new FileOutputStream(fileName);                bitmap.compress(Bitmap.CompressFormat.JPEG, 100, b);// 把数据写入文件            } catch (FileNotFoundException e) {                e.printStackTrace();            } finally {                try {                    b.flush();                    b.close();                } catch (IOException e) {                    e.printStackTrace();                }            } 另外要注意的是读写sd卡文件必须首先要在Mainifest.xml文件中配置权限:           一个demo,实现调用系统相机拍照,将其显示在屏幕上,并且存到sd卡。    
    2013-06-13下载
    积分:1
  • android 游戏商城源码(不完整,新手写的)
    android 游戏商城源码(不完整,新手写的)
    2015-07-04下载
    积分:1
  • omap_l3_smx
    OMAP3XXX L3 Interconnect Driver header.
    2015-06-13 22:43:00下载
    积分:1
  • button2
    JAVA,android计算器设计,简单计算功能做好了,高级功能有几个例子(JAVA, android calculator design, simple computing functions ready, advanced features are a few examples)
    2013-08-26 00:48:01下载
    积分:1
  • android 下载远程网络文件 示例源码
    android 下载远程网络文件 示例源码
    2014-09-04下载
    积分:1
  • Dom4j详解
    Dom4j解析xml文件和字符串
    2015-04-15下载
    积分:1
  • 696516资源总数
  • 106947会员总数
  • 12今日下载