-
通过输入输出流实现一个记事本
通过输入输出流把用户写的信息保存到手机中,想要看的时候,再从手机中读取出来
- 2022-03-05 10:06:51下载
- 积分:1
-
android-order-system
基于Java的android点餐系统--android手机点餐系统,实现基本点菜功能,供大家参考学习(Java-based ordering system android- android phone ordering system, and the basic order functions, for reference study)
- 2020-06-25 21:00:02下载
- 积分:1
-
3DCubeView
该程序实现了图形切换立体效果,并可以任意设定图片内容。(Graphics switching stereo effect)
- 2011-10-24 11:41:59下载
- 积分:1
-
android_key
android新增按键值流程,从底层到中间层再到上层app,对linux和android framework有个一定的认识(android key value added processes, from the bottom to the middle layer and then to the upper app, android framework for linux and have a certain understanding of)
- 2013-10-09 11:34:19下载
- 积分:1
-
darvds-RibbonMenu
Android 导航菜单 RibbonMenu Android源码包,是不是看到了这个熟悉的界面?在Android机中,像RibbonMenu这种类似的菜单多之又多,对于想搞Android应用开发的来说,这算是基础的菜单制作技巧了,因此对于安卓开发初学者还是相当有价值参考的。(Android navigation menu RibbonMenu Android source packages, is not seeing this familiar interface? In Android machine, such as a similar menu RibbonMenu more than the addition, stir it for Android application development, which can be considered the foundation of menu making skills, so for Android development is still quite valuable reference for beginners.)
- 2014-02-12 09:47:14下载
- 积分:1
-
Android Paint画一个方框矩形
Android Paint画一个方框矩形,要使用到触笔事件及线程的相关操作,绘制绿色实心矩形和黄色的方框矩形:
/* 同样是设置颜色 */
mPaint.setColor(Color.rgb(255, 0, 0));
/* 提取颜色 */
Color.red(0xcccccc);
Color.green(0xcccccc);
/* 设置paint的颜色和Alpha值(a,r,g,b) */
mPaint.setARGB(255, 255, 0, 0);
/* 设置paint的Alpha值 */
mPaint.setAlpha(220);
/* 这里可以设置为另外一个paint对象 */
// mPaint.set(new Paint());
/* 设置字体的尺寸 */
mPaint.setTextSize(14);
// 设置paint的风格为“空心”.
// 当然也可以设置为“实心”(Paint.Style.FILL)
mPaint.setStyle(Paint.Style.STROKE);
// 设置“空心”的外框的宽度。
mPaint.setStrokeWidth(5);
/* 得到Paint的一些属性 */
Log.i(TAG, "paint的颜色:" + mPaint.getColor());
Log.i(TAG, "paint的Alpha:" + mPaint.getAlpha());
Log.i(TAG, "paint的外框的宽度:" + mPaint.getStrokeWidth());
Log.i(TAG, "paint的字体尺寸:" + mPaint.getTextSize());
/* 绘制一个矩形 */
// 肯定是一个空心的举行
canvas.drawRect((320 - 80) / 2, 20, (320 - 80) / 2 + 80, 20 + 40, mPaint);
/* 设置风格为实心 */
mPaint.setStyle(Paint.Style.FILL);
mPaint.setColor(Color.GREEN);
/* 绘制绿色实心矩形 */
- 2022-07-09 22:15:17下载
- 积分:1
-
简易指纹采集室内定位系统
应用背景在室内环境无法使用卫星定位时,使用室内定位技术作为卫星定位的辅助定位,解决卫星信号到达地面时较弱、不能穿透建筑物的问题。最终定位物体当前所处的位置。室内定位可用于商业等等关键技术通过无线接入点(包括无线路由器)组成的无线局域网络(WLAN),可以实现复杂环境中的定位、监测和追踪任务。它以网络节点(无线接入点)的位置信息为基础和前提,采用经验测试和信号传播模型相结合的方式,对已接入的移动设备进行位置定位,最高精确度大约在1米至20米之间。如果定位测算仅基于当前连接的Wi-Fi接入点,而不是参照周边Wi-Fi的信号强度合成图,则Wi-Fi定位就很容易存在误差(例如:定位楼层错误)
- 2022-08-22 08:10:34下载
- 积分:1
-
ANDROID 万年历 ,农历
ANDROID 万年历 ,农历 二十四个节气
- 2022-10-31 17:00:03下载
- 积分:1
-
android button例子分析
1. android 界面开发之button开发的详细讲解,里面源代码已经包括了button的主要操作。
2. 包括button的各种属性,各种你平时很难见到的属性,告诉你原来button还可以这么用。
- 2023-01-30 23:55:03下载
- 积分:1
-
Android-C-a-NDK-a-Cygwin
学习android jni很好的文档,内容很全很详细(Learning android jni good documentation)
- 2014-01-02 18:04:19下载
- 积分:1