-
Launcher3源码
Android Launcher源码, Launcher3源码, Android6 源码 Launcher3, Android6.0 Launcher3源码 ,Android6.0源码学习,Android6.0.0.r1源码 Launcher3部分
- 2022-03-20 22:14:09下载
- 积分:1
-
支付宝 移动快捷支付应用集成接入包支付接口
客户端含 android 和ios 服务器端含多种语言demo
- 2015-03-18下载
- 积分:1
-
Android AlertDialog
- 2022-07-15 08:09:15下载
- 积分:1
-
实现txt文件的翻页
本例子实现了对TXT文件的读取,主要展现翻页效果的制作
- 2015-05-02下载
- 积分:1
-
CeHuaDemo
一个仿“遇见”的侧滑效果样例,样例详细解析见:http://blog.csdn.net/lamp_zy/article/details/7857655(An imitation of the " met" sliding effect of the sample, the sample detailed analysis see: http://blog.csdn.net/lamp_zy/article/details/7857655)
- 2013-05-12 10:46:21下载
- 积分:1
-
高仿京东商城
高仿京东商城
高仿京东商城,希望对你有帮助
高仿京东商城,希望对你有帮助
- 2022-01-25 22:38:42下载
- 积分:1
-
googlelocation
说明: 用Android studio配置谷歌地图,实现坐标定位并显示。(Configure Google Map with Android studio to achieve coordinate positioning and display.)
- 2019-04-05 20:54:55下载
- 积分:1
-
weather
Android下天气小插件,可以实现对当前天气的检测,以及对未来几天天气的预测(Android weather widget, you can achieve detection of current weather and weather forecast for the next few days)
- 2014-05-28 16:12:13下载
- 积分: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 万年历 ,农历 二十四个节气
- 2022-10-31 17:00:03下载
- 积分:1