-
仿饿了吗APK源码
资源描述高仿饿了吗的界面 ,实现9宫格,左侧菜单,图片在线加载等,剩余的功能 自己 看 ,文笔不好,就凑数吧,只能这样呢,谁叫我是程序猿,不是 作家呢
- 2022-01-26 07:50:17下载
- 积分:1
-
android 3D物理传感器游戏——小球快跑
android应用程序,利用传感器开发的, 3D物理传感器游戏——小球快跑。本人参考国外源码进行的改变,非常有借鉴意义。传感器开发是未来的热点,将会和物联网、穿戴设备结合成为未来大热点。
- 2023-04-11 17:45:03下载
- 积分:1
-
TestCamera
适用于基于Java的android开发中调用摄像头拍照的小功能(Applies to camera function based on Java in android development)
- 2015-03-10 11:04:20下载
- 积分:1
-
七彩云浏览器
说明: 一款可以看全网vip电影电视剧的软件,绝对可用,破解全网各大平台VIP。(buhuiyingwensuoyiluanxiede)
- 2020-06-19 17:40:02下载
- 积分:1
-
android中瀑布流Demo
本代码是一个androidgridView的瀑布流Demo,代码简洁明了,很容易懂得懂,很适合初学者,里面有现成的资源,直接可以再Eclipse上运行,很容易懂得懂,很适合初学者,里面有现成的资源,直接可以再,很容易懂得懂,很适合初学者,里面有现成的资源,直接可以再。
- 2023-07-21 02:30:05下载
- 积分:1
-
Soruce_Code_Of_Secret_Of_Android_Application_Devel
《Android应用开发揭秘》本书内容全面、循序渐进、深入浅出,实战性强,权威性毋庸置疑!全书一共分为5个部分:第一部分是准备篇,第二部分是基础篇,讲解了Android开发的相关知识,第三部分是实例篇,第四部分是高级篇,第五部分是扩展篇。(" Android Application Development Hood" of the book is comprehensive, step by step, easy to understand, combat and strong, authoritative doubt! The book is divided into a total of five parts: The first part is to prepare papers, articles based on the second part is to explain the Android development of knowledge, the third part is the instance of the article, the fourth part is the advanced part, Part V is to expand articles.)
- 2020-06-25 22:40:02下载
- 积分:1
-
Android实现ListView的A-Z字母排序
Android实现ListView的A-Z字母排序,是按照你每行的数据的首字符的首字母进行排序的,代码简单,清晰,有注释,适合初学者学习,使用
- 2022-01-22 14:53:36下载
- 积分:1
-
通过百度定位系统实现的安卓APP
android studio平台的 可以运行 可以做到用gps, wifi同时定位 精度比较高
- 2022-08-15 02:53:31下载
- 积分:1
-
SuperMario
ANDROID系统,超级玛丽游戏源代码,适合初学者研究,学习。(ANDROID system, Super Mario game source code, suitable for beginners to study and learn.)
- 2011-11-18 10:27:43下载
- 积分:1
-
Android OnClickListener监听接口用法范例
Android OnClickListener监听接口用法范例,基础级的例子,
Button button = (Button) findViewById(R.id.Button01);//获取屏幕中的按钮控件对象
button.setOnClickListener(//为按钮对象添加OnClickListener接口实现
//OnClickListener为View的内部接口,其实现者负责监听鼠标点击事件
new View.OnClickListener(){
public void onClick(View v){
LinearLayout ll=(LinearLayout)findViewById(R.id.lla);//获取线性布局对象
String msg=LinearActivity.this.getResources().getString(R.string.button);
Button tempbutton=new Button(LinearActivity.this);//创建一个Button对象
tempbutton.setText(msg+(++count));//设置Button控件显示的内容
tempbutton.setWidth(80);//设置Button的宽度
ll.addView(tempbutton);//向线性布局中添加View
System.out.println("========= count"+count);
- 2023-05-27 15:00:04下载
- 积分:1