-
android系统上层所有应用的源代码.rar
android系统上层所有应用的源代码.rar很好的学习android的应用实例
- 2023-06-27 22:15:10下载
- 积分:1
-
ListView内嵌GridView
ListView内嵌GridView
- 2014-01-12下载
- 积分:1
-
wifi连接
资源描述用户交互界面填写要连接的wifi的ssid及其连接方式(WEP、WPA或无密码情况),点击连接,即可通过服务连接wifi,同时,广播实时监听wifi的连接状态
- 2022-02-20 07:06:21下载
- 积分:1
-
Android版视频开发源代码
Android版视频开发源代码,一个爱奇艺视频源代码,包含界面、Activity的切换,数据库的读取,内容详尽是开发Android的很好地案例代码。
- 2022-11-08 17:05:03下载
- 积分:1
-
地震波库(全)
【实例简介】
- 2021-06-24 00:31:12下载
- 积分:1
-
android uvcCamera
【实例简介】usb camera的连接使用
- 2021-07-17 00:32:04下载
- 积分:1
-
cartoon_Application
基于安卓的高仿快看漫画项目源码,只是仿照了UI部分,没有实际功能。仿照的UI有设置、分类、热门、首页按星期展示内容等部分。一个常见展示类app的大体框架就是这些了。可以在本项目基础上自己二次开发。(Based on Android s high imitation fast look at the comic project source code, just modeled on the UI section, there is no practical function. Modeled on the UI have set, classification, popular, home page by week display content and other parts. A common display of the general framework of the class app is these. Can be based on the project itself, the two development.)
- 2016-09-03 10:27:36下载
- 积分: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
-
自定义标签
自定义标签
- 2013-12-06下载
- 积分:1
-
InternalFileDemo
android开发文件读写实例demo,用户可在文本框输入文字写入文件,可用追加模式(A Demo of File read/write for Android development.)
- 2013-08-16 14:16:28下载
- 积分:1