-
ftp 源代码
C#写的ftp客户端,很适合初学者学习,希望能帮助到大家。可以支持上传和下载的功能!
- 2022-06-18 19:17:00下载
- 积分:1
-
android手机录像代码
此code完整的展示了android手机摄像头采集,编码写文件的过程
- 2022-04-26 23:14:34下载
- 积分:1
-
android使用JSON进行网络数据交换(服务端、客户端)的实现
android使用JSON进行网络数据交换(服务端、客户端)的实现
- 2015-04-17下载
- 积分:1
-
资产的文件夹
此程序为 android 用户的。它是在 android 系统投用资产文件的一个例子。有两个方法,移到内部内存并将移动到外部存储器。
- 2022-02-07 17:52:25下载
- 积分:1
-
android编程200实例
android编程实例,包含多个android的实际用法和典型应用,并附有详细的解释,一共200个实例
- 2023-03-19 18:45:13下载
- 积分:1
-
moshoutafang2
在电脑上玩过魔兽塔防游戏的,一直会记得当年这款游戏的火爆程度。现在,在安卓盛行的今天,我们也终于得到了android手机版的魔兽塔防游戏源码,这对于android初中级游戏开发者来说,是难得的参考资料,里面运用到了很多Android方方面面的技术,精彩不容错过(Played Warcraft tower defense games on the computer, always will remember the popular level then the game. Now, in Andrews prevalent today, we finally got android mobile version of Warcraft tower defense game source code, which for android middle-class game developers, is a rare reference, which applied to a lot of technical aspects of Android, wonderful Do not miss)
- 2014-04-18 08:22:47下载
- 积分:1
-
Android 事件监听方法的创建和具体实现
本Android源码演示事件监听方法的创建和具体实现,演示程序中,用户点击不同的按钮,演示具体的事件监听功能:
public void onClick(View v) {//实现事件监听方法
if(v == buttons[0]){//按下第一个按钮时
textView.setText("您按下了"+((Button)v).getText()+",此时是分开处理的!");
}
else{//按下其他按钮时
textView.setText("您按下了" + ((Button)v).getText());
}
}
- 2022-02-15 22:04:03下载
- 积分:1
-
图片滤镜
图片滤镜图片滤镜图片滤镜图片滤镜
- 2013-11-02下载
- 积分:1
-
foursquared
foursquared android 客户端源码,以前下载的,现在都不能下了,想看的童鞋们可以看看,代码写的没法说。(foursquared android client source code, previously downloaded, now can not come, and want to see the children s shoes can see, the code can not write that.)
- 2011-12-07 21:14:43下载
- 积分:1
-
Android使用Dialog制作popWindow气泡提示框
这是一个Android使用Dialog制作popWindow气泡提示框的源代码例子,气泡提示是主动弹出,您可以通过此源码学习制作气泡view、气泡dialog、气泡显示内容的自定义,获取屏幕的宽和高,一些初始化代码:
//设置TextView宽度
tvKnow.setMinWidth(tmpWidth);
tvBubContent.setMaxWidth(tmpWidth);
//以指定的样式初始化dialog
bubbleAlert = new Dialog(this,R.style.bubble_dialog);
Window win = bubbleAlert.getWindow();//获取所在window
LayoutParams params = win.getAttributes();//获取LayoutParams
params.x = -(SCREEN_WIDTH/8);//设置x坐标
params.y = -tmpHeight;//设置y坐标
params.width = tmpWidth;
- 2023-06-24 03:20:03下载
- 积分:1