-
蓝牙智能车android遥控程序
本程序的功能是通过蓝牙遥控智能车的运动轨迹,蓝牙模块放在智能车上,并为其接通电源。在安卓程序界面中有5个控制按钮,分别是实现对玩具车的向前、左转、右转、后退和停止的控制。其中难度较大的是双向控制,即实现每个设备都可以操控另外一个设备的功能,此时就需要有蓝牙功能的电脑或者另外的一部android手机来完成测试。
- 2022-12-06 05:35:03下载
- 积分:1
-
Android 高仿【优酷】圆盘旋转菜单的实现
Android 高仿【优酷】圆盘旋转菜单的实现,简单但是很酷的菜单
- 2022-01-25 19:35:37下载
- 积分:1
-
TabHost
安卓tabhost控件的使用方法演示;适合初学者学习使用(Android tabhost control the use of demonstration suitable for beginners learning to use)
- 2013-06-21 16:03:18下载
- 积分:1
-
com
SignalA修改后的源码,支持android2.2及以上(SignalA modified source code, support android2.2 and above)
- 2013-11-04 13:08:31下载
- 积分:1
-
小人奔跑动画
资源描述类似美团和类似顺风快递的动画等待框,可以使app更加美观,app项目开发中比较实用,直接实用,用法简单
- 2022-02-28 11:10:33下载
- 积分:1
-
pubu
Android项目源码带瀑布流的旅游指南应用是一款旅游型的APP,是旅游目的地攻略指南,可以自动定位到城市,景点,餐馆,酒店,还可以分享旅游经验,与参与者互动。该项目的架构合理,有详细的注解,其中引入了第三方的瀑布流项目,以源代码的形式直接加入,很好的学习材料。默认使用UTF-8编码,编译版本为4.3(The Android project source code with a waterfall flow guide application is app a type of tourism, tourism destination strategy guide, can automatically locate the city, attractions, restaurants, hotels, can also share travel experiences, to interact with the participants. The framework of the project is reasonable, there are detailed notes, which introduces the third side of the waterfall flow project, in the form of source code to join, a good learning materials. The default use of UTF-8 code, the compiler version is 4.3)
- 2020-12-27 16:59:03下载
- 积分:1
-
Android 学习TweenAnimation动画让一张图片360度旋转
这是一个Android TweenAnimation动画让一张图片360度旋转,在android虚拟机上运行后,单击“观看动画”按钮后,图像即开始旋转,旋转N圈后自动停止,并自动减慢速度停止,保持最后的状态。来看相关的代码(并非完整代码):
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
final ImageView iv = (ImageView)findViewById(R.id.iv);
Button btn = (Button)findViewById(R.id.btn);
final Animation anim1 = AnimationUtils.loadAnimation(this, R.anim.anim1);
final Animation anim2 = AnimationUtils.loadAnimation(this, R.anim.anim2);
anim1.setFillAfter(true);//保持最后的状态
anim2.setFillAfter(true);
final Handler h = new Handler(){
@Override
public void handleMessage(Message msg) {
if(msg.what == 0x11){
iv.startAnimation(anim2);
}
}
};
- 2022-12-18 04:35:03下载
- 积分:1
-
dex2jar-0.0.9.15
反编译工具中的最新更新,能够反编译android程序。(Decompilation tool latest updates can decompile android program.)
- 2013-08-06 09:36:32下载
- 积分:1
-
用DialogFragment创建登录对话框 并传值给activity 实例源码下载
用DialogFragment创建登录对话框 并传值给activity 实例源码下载
- 2015-01-13下载
- 积分:1
-
Android TextToSpeech 汉字转换成语音的简单测试
Android TextToSpeech 汉字转换成语音的简单测试,根据用户输入的单词及中文汉字,模拟出语音朗读,对英文转换较好,界面挺简单,操作方便,请参见演示截图所示。
- 2023-08-23 15:20:03下载
- 积分:1