-
中国天气预报源码
天气源码,三个界面,五个包,自带天气图片,手动定位,GPS定位获取城市,发送城市获取城市码,获得天气,调用自带图片,显示天气
- 2022-01-24 17:20:48下载
- 积分: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
-
android 服务自我保护(杀不死) 例子源码
android 服务自我保护(杀不死) 例子源码
- 2014-09-19下载
- 积分:1
-
Android API人脸检测范例代码
Android API人脸检测范例代码,打开一张含有人脸的照片,程序会自动识别人脸区域,在人的眼睛区域标识出红圈,看着更像是人眼检测,哈哈。这个人脸检测是静态的,也就是打开图片识别,并不能实现像手机取景时的人脸识别功能,仅供参考。
- 2022-06-16 10:41:00下载
- 积分:1
-
Xposed平台的位置伪装模块
基于Xposed平台的位置伪装模块,可以hookAndroid手机的GPS模块,使得手机定位软件显示的位置是自己设置的位置(The location camouflage module based on Xposed platform can hook the GPS module of Android mobile phone, so that the location displayed by mobile phone positioning software is the location set by itself.)
- 2020-06-19 09:40:01下载
- 积分:1
-
Hello
关于流水灯在android系统上的驱动和porting方法,仅供参考(LED driver porting on android)
- 2014-07-02 10:09:26下载
- 积分:1
-
PhotoDealer
实现小型相册 调用相册,截图的api。可以旋转、放大缩小图片(Implements the API of getting photos from your albumn)
- 2012-03-11 20:04:37下载
- 积分:1
-
android 网络图片下载 示例源码
很好的下载图片的工具类,特别是结合listview一起用,废话不多说,直接上源码
- 2014-03-26下载
- 积分:1
-
SecurityClientParser
Security Client Parser Source Code for Andriod.
- 2013-12-06 14:30:25下载
- 积分:1
-
Android三种方法实现TextView文字滚动效果
Android三种方法实现TextView文字滚动效果,很多人叫做跑马灯,这个不是图片滚动,是纯文字版的,我这android环境Down掉了,死活调试不起来,没截图了,需要的自行下载本源码包,代码中有中文注释,从代码看,除了实现文字滚动,并没有其它多余的功能,只是一个简单的Android文字控制例子。
- 2022-06-20 13:25:01下载
- 积分:1