-
android 实现后台service持续运行,并且唤醒之后进入自定义界面 例子
安装之后就能不断的唤醒,实现后台service持续运行,并且唤醒之后进入自定义界面
- 2014-09-19下载
- 积分:1
-
视频聊天android端代码 下载
使用webrtc的开源android端代码
- 2015-05-27下载
- 积分:1
-
触摸屏坐标定位程序
android 触摸屏坐标定位程序,可以精确定位坐标,使用java开发,希望对大家有用
- 2023-01-12 19:00:04下载
- 积分:1
-
安卓日历源码下载
android 日历
- 2014-12-24下载
- 积分:1
-
AndroidManifestParser
Checks that a class is valid and can be used in the Android Manifest.
- 2013-10-14 23:11:56下载
- 积分:1
-
Android应用源码高仿大众点评第二版
含服务器端源码(php)、android客户端源码、数据库脚本等
- 2015-06-24下载
- 积分:1
-
IfRealCar
写给侄儿玩的小游戏 主页显示车的内饰 有方向盘 刹车 油门 各自有一个触摸域 按下后发出各自的声音(a game for china ,It`s 3 button of a car on the screen, when touch them ,they will play sounds. )
- 2012-03-20 09:55:18下载
- 积分: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
-
android 记事本 例子源码下载(初级版本)
将数据写入文件了
- 2014-09-15下载
- 积分:1
-
android progressBar 进度条实例下载
android progressBar 进度条实例,适合入门级朋友学习
- 2013-03-23下载
- 积分:1