-
ApiDemo
android ApiDemo 包含各种各样的用法(android ApiDemo)
- 2011-06-21 15:03:15下载
- 积分:1
-
Android 带弹幕的视频播放器(多媒体-10_093).zip
Android 带弹幕的视频播放器(多媒体-10_093).zip
- 2019-10-07下载
- 积分:1
-
LinkGame
说明: 能实现电脑端双人连连看游戏,里面已设置好关卡,只有在规定时间内通过游戏关卡才能进入下一关,否则游戏失败,同时进行倒计时。(It can realize the double-player continuous watching game on the computer side. The game has been set up a checkpoint. Only through the game checkpoint in the prescribed time can we enter the next level, otherwise the game will fail and the countdown will be made at the same time.)
- 2019-04-03 15:34:59下载
- 积分:1
-
momo
自己闲时网上找的改的陌陌的客户端,UI界面基本都有,可以作为学习的参考(When I am free, I can find some new clients on the internet. The UI interface is basically available, which can be used as a reference for learning.)
- 2019-03-01 14:10:17下载
- 积分:1
-
getwifimac
android手机终端wifimac地址测试代码。(android mobile terminals wifimac address test code.)
- 2013-05-30 19:54:41下载
- 积分:1
-
Android 使用Matrix.postRotate方法旋转图片
Android图像操作一例,使用Matrix.postRotate方法旋转图片,这些的图片格式是BMP,其它格式可能也能用吧,没测试,旋转BMP图片的效果如截图所示,用户单击向左或向右按钮后,图片旋转90度,旋转角度根据自己需要自定义。旋转方法主要是使用Matrix.postRotate,旋转的过程保持图片原有的比例,实现思路,以向左旋转图片为例:
程序刚运行,加载默认的Drawable ,设置维持的图像比例,ScaleTimes=1,维持1:1的宽高比例,使用Matrix.postScale设置维度 ,使用Matrix.postRotate方法旋转Bitmap,然后再创建新的Bitmap对象。
向右旋转则与此相似,具体实现请下载源码包。
- 2022-03-14 01:23:24下载
- 积分:1
-
IPC
安卓系统中进程通信的例程,利用IPC机制进行服务端与客户端的进程通信(Andrews in the process of communication routines, the use of the IPC mechanism to carry out the process of communication services and the clients)
- 2012-07-12 15:45:36下载
- 积分:1
-
Android毕业设计(论文)源码:小乖记账理财及文档
这是福建工程学院本科毕业设计(论文)全套资源,含源码,做的是一个基于Android的源码小项目:小乖记账理财APP源代码,系统采用Eclipse+ Android Developer Tools作为开发工具,以SQLite为数据库。系统功能包括:用户账户的注册、用户切换、用户名密码修改、账户删除,收入信息的增删改,支出信息的增删改,便签信息的增删改,收入类型的增删,支出类型的增删,收入信息分类统计,支出信息分类统计,收入支出总额统计,数据还原、清空等等。系统具有界面简洁鲜明、功能便捷易用、操作人性化等特征。
关键词:收支管理;Android;SQLite;
要做好一件事情总是没那么容易,在编程的世界里总是有无数的bug跟随。在这个项目中,50%的时间都是在找bug、改bug中度过的。在这样的一个过程中,也意识到了自己在很多时候不够细致。虽然思路正确,却总有边边点点的小问题,终归还是基础功不够扎实,很多地方了解不透彻造成了误用。
- 2022-03-29 06:54:58下载
- 积分: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客户端访问web服务器,实现一个登录功能
服务端+数据库+安卓端通过Android客户端访问web服务器,实现一个登录功能。
- 2022-03-13 12:55:46下载
- 积分:1