-
android游戏源码
android游戏开发源码,真实游戏的代码,来自国外开源游戏网站。里面有很多技巧,非常实用。
android游戏开发源码,真实游戏的代码,来自国外开源游戏网站。里面有很多技巧,非常实用。
- 2022-01-26 06:03:35下载
- 积分:1
-
基本跳转代码
这是一个实现页面跳转的源代码,就是模拟用户登录,然后跳转到另一个界面,是安卓初学者最基本要掌握的跳转代码,希望为你们提供帮助。
- 2022-05-27 18:33:15下载
- 积分:1
-
Android Proximity Alert 手机接近进警告或提示功能一例
Android Proximity Alert 手机接近进警告或提示功能一例
LocationManager lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
//定义接近区域的大致经度、纬度
double longitude = 113.39;
double latitude = 23.13;
//定义接近区域的半径(5公里)
float radius = 5000;
//定义接近区域后 触发的PendingIntent
Intent intent = new Intent(this,ProximityAlertReciever.class);
PendingIntent pi = PendingIntent.getBroadcast(this, -1, intent, 0);
//添加接近警告
lm.addProximityAlert(latitude, longitude, radius, -1, pi);
- 2023-05-01 11:35:03下载
- 积分:1
-
android 3D轮播实例源码下载
android 3D轮播实例源码下载
- 2014-05-12下载
- 积分:1
-
Android
Android开发指南中文版,特别收藏版(Chinese version of Android Development Guide, Special Collections Edition)
- 2011-06-01 11:27:22下载
- 积分:1
-
autojs支付宝自动偷能量
autojs支付宝自动偷能量
- 2020-11-04下载
- 积分:1
-
android幸运大转盘源码及教程
最近在做大转盘的项目,网上大都是指针转,盘不转,今天上传一个盘转的。
- 2014-04-18下载
- 积分:1
-
媒体播放器
安卓系统的简单的媒体播放器一个样本。
- 2022-02-07 23:01:02下载
- 积分:1
-
android刮刮卡
慕课网抽奖刮刮卡代码,实现类似于阿里刮刮卡中奖的自定义控件,使用了Xfermodes的方法,完美实现功能
- 2022-08-19 13:10:47下载
- 积分:1
-
listviewheSQLitezhishi
注意:本项目是基于android studio开发的,eclipse可能无法直接使用。
本项目是一个简单的基于安卓的记事本项目源码,添加或删除数据的时候会出现显示bug(实际数据不会受到影响),bug体现在添加或删除一条数据以后会在listview里面会展示复制一遍操作后的数据。而不会清除原有的列表文本。新手朋友可以拿这个项目来试试手感,顺便看看能不能独立解决这个问题。
本项目涉及的知识点有:
1、SQLite的基本使用,增删查改
2、listview,adapeter的基本使用
3、activity生命周期
4、intent、bundle传递参数
5、AlertDialog的基本使用(Note: this project is based on the development of studio eclipse, Android may not be able to directly use.
This project is a simple Notepad program source code based on Android, add or delete data will appear when the display bug (actual data will not be affected), bug reflected in add or remove a data will be in inside the listview will show copy again after the operation data. And will not clear the original list of text. Novice friends can take this project to try to feel, by the way to solve this problem can not be solved independently.
The knowledge points involved in this project are:
1, the basic use of SQLite, CRUD
2, listview, the basic use of adapeter
3, activity life cycle
4, intent, bundle transfer parameters
5, the basic use of AlertDialog)
- 2016-07-25 11:25:09下载
- 积分:1