-
android折线图程序源码
应用背景安卓手机绘制折线图,根据数据值,画出相应的折线图关键技术android,利用自定义view,根据左标点,画出折线图
- 2022-01-26 19:23:21下载
- 积分:1
-
android团解锁
常见的图案解锁实现,在android上的实现方法,快来看吧!
- 2022-05-25 02:20:39下载
- 积分:1
-
-Mp3Player03
播放音乐功能,实现界面切换 按钮隐藏和显示(Play music interface toggle button to hide and show)
- 2013-01-24 10:58:05下载
- 积分:1
-
Android 的 FTP 客户端
在这个项目中你可以很容易下载/上传从您的 sd 卡到服务器或其他电话
- 2022-02-20 10:28:53下载
- 积分:1
-
android 瀑布流 完整实例源码下载
android 瀑布流 完整实例源码下载
- 2014-07-29下载
- 积分:1
-
ListWithMailMessages
List With Mail Messages for Andriod.
- 2013-11-06 14:46:42下载
- 积分:1
-
Android LinearLayout结合TextView选择列表项数据
Android LinearLayout结合TextView选择列表项数据,在虚拟机上是单击鼠标选中一行数据,在手机上则是手触摸一下即选择对应数据行,循环生成每行的包含对应各个列数据的Map;col1、col2、col3为列名,可参考相关代码:
重写选项被单击事件的处理方法
TextView tv=(TextView)findViewById(R.id.TextView01);//获取主界面TextView
LinearLayout ll=(LinearLayout)arg1;//获取当前选中选项对应的LinearLayout
TextView tvn=(TextView)ll.getChildAt(1);//获取其中的TextView
TextView tvnL=(TextView)ll.getChildAt(2);//获取其中的TextView
StringBuilder sb=new StringBuilder();
sb.append(tvn.getText());//获取姓名信息
sb.append(" ");
sb.append(tvnL.getText());//获取描述信息
tv.setText(sb.toString());//信息设置进主界面TextView
- 2022-01-26 02:38:14下载
- 积分:1
-
APK Edit v0.4e
An Android Package editor for Windows
- 2018-05-23 04:07:27下载
- 积分:1
-
仿微信UI 实例源码下载,Android学习
本软件基本实现微信的所有UI效果。具备如下功能点:登录、功能指引、退出对话框、设置界面、会话界面、右上角功能键、详细资料头像点击放大效果、摇一摇摇一摇判断“shake”部分来源于网络,具体地址忘了。。。。摇一摇的动画效果是我做的,支持真机摇一摇哦! 新特点:主界面使用的是viewpager 支持手势也支持底部图标点击!(比原版微信tabhost强多了!)其他的不说了,看截图:
- 2015-02-02下载
- 积分:1
-
远程视频监控
【核心代码】 public interface CameraSource { static final String LOG_TAG = "camera"; /** * Open the camera source for subsequent use via calls to capture(). * * @return true if the camera source was successfully opened. */ boolean open(); /** * Close the camera source. Calling close on a closed CameraSource is * permitted but has no effect. The camera source may be reopened after * being closed. */ void close(); /** * The width of the captured image. * * @return the width of the capture in pixels */ int getWidth(); /** * The height of the captured image. * * @return the height of the capture in pixels */ int getHeight(); /** * Attempts to render the current camera view onto the supplied canvas. * The capture will be rendered into the rectangle (0,0,width,height). * Outstanding transformations on the canvas may alter this. * * @param canvas the canvas to which the captured pixel data will be written * @return true iff a frame was successfully written to the canvas */ boolean capture(Canvas canvas); boolean saveImage(String savePath, String fileName); }
- 2013-12-04下载
- 积分:1