-
SensorTest
Android 手机系统中的重力传感器+源码,作者信息:Himi,重力传感器也称为加速度传感器,源代码编译环境需要SDK 1.5(api 3)支持。
(Android System gravity sensor+ source , Editor info:Himi,gravity sensor called accelerate speed sensor, souce compilation need SDK 1.5(api 3)support)
- 2011-12-19 15:54:50下载
- 积分:1
-
android 录制屏幕
一个简单的实现屏幕录制的功能,设个android5.0及以上使用,不需要root
- 2023-07-28 00:40:04下载
- 积分:1
-
计步器安卓程序
统计穿戴者徒步行走的步数和距离,计算行走速度和消耗的热量。并且具有启动和关闭功能,还可以 对整个系统进行灵活的设置。
- 2022-01-26 02:41:41下载
- 积分:1
-
安卓系统任务管理器
安卓系统的简单的任务管理器。
任务管理器(STM)是整个系统应用程序.
任务,应用程序,Sd卡,设备,系统 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-02-05 08:42:04下载
- 积分:1
-
MyAppWeixin
仿微信界面,有摇一摇功能,此款软件用来学习android非常有用。(Imitation of micro letter interface, a wave function, this software is very useful to study the android.
)
- 2013-08-11 20:24:27下载
- 积分:1
-
androidlistview,listview 任意拖动排序,可运行
androidlistview,listview 任意拖动排序,可运行
- 2022-03-26 04:33:50下载
- 积分:1
-
具有蓝牙聊天功能
能够通过打开蓝牙进行连接,不过需要双方都有这个应用,然后可以进行搜索查找连接,并且能够实现类似于短信一样的聊天功能
- 2022-08-07 05:24:44下载
- 积分:1
-
android 动态切换壁纸实例 利用service机制实现 附完整源码 带动态截图
通过点击 startService实现 android手机动态壁纸功能
- 2013-04-12下载
- 积分:1
-
android 提醒小闹钟 例子源码
android 提醒小闹钟 例子源码
- 2014-10-17下载
- 积分:1
-
android图片旋转、淡入淡出、缩放效果、移动效果示例
android图片旋转、淡入淡出、缩放效果、移动效果示例,先来看下截图的运行效果,单击对应的按钮,即可看到效果,淡入淡出之类的,图片旋转之类的。
图片旋转的代码如下:
rotateAnimation.setDuration(5000);
animationSet.addAnimation(rotateAnimation);
image.startAnimation(animationSet);
淡入淡出效果:
AnimationSet animationSet = new AnimationSet(true);
animationSet.setInterpolator(new AccelerateInterpolator());
AlphaAnimation alphaAnimation = new AlphaAnimation(1, 0);
RotateAnimation rotateAnimation =
new RotateAnimation(0, 360,
Animation.RELATIVE_TO_PARENT, 1f,
Animation.RELATIVE_TO_PARENT, 0f);
animationSet.addAnimation(alphaAnimation);
animationSet.addAnimation(rotateAnimation);
alphaAnimation.setDuration(3000);
image.startAnimation(animationSet);
animationSet.setRepeatCount(4);
- 2023-02-06 16:40:04下载
- 积分:1