-
a tool to monitor current traffic of total mobile system including average traffic speed and runtime
一个小工具 采用android系统api 可以监测系统应用的流量使用和当前网速
- 2022-08-09 15:37:38下载
- 积分:1
-
android验证码的整个实现过程和所有的代码
android验证码的整个实现过程和所有的代码
- 2014-11-07下载
- 积分:1
-
T_ReboundAnim
提供了android的gallary和gridview的反弹效果,如已经到头了,在按《-键或鼠标拖动,会有反弹效果(Provides the android gridview gallary and rebound effects, such as have already been explored, and in the press "- key or mouse to drag, there will be a rebound effect)
- 2011-12-22 16:56:54下载
- 积分:1
-
Android 强制回到待机界面 回到桌面
Android 强制回到待机界面 回到桌面,类似于手机中HOME键,单击一下会将当前程序隐藏至后台运行,并转到待机画面。不知道什么意思的,可看看截图所示的效果。
- 2022-06-21 08:57:34下载
- 积分:1
-
IPC
安卓系统中进程通信的例程,利用IPC机制进行服务端与客户端的进程通信(Andrews in the process of communication routines, the use of the IPC mechanism to carry out the process of communication services and the clients)
- 2012-07-12 15:45:36下载
- 积分:1
-
基于蓝牙的姿态数据采集与图像绘制
通过实时地搜集传感器传到的数据,放入数据库,并绘制出当前姿态角度数据,完成室内定位效果
- 2023-07-09 17:25:08下载
- 积分:1
-
扫描图片读取图片上的文字信息
扫描图片读取图片上的文字信息,直接解压导入工程就可以了。通过选择或者拍摄照片的方式来把图片上的信息读取出来。
- 2022-01-21 05:05:01下载
- 积分:1
-
android联系人带字母检索源码
android联系人带字母检索源码/** * 联系人列表适配器。 * * @author guolin */public class ContactAdapter extends ArrayAdapter { /** * 需要渲染的item布局文件 */ private int resource; /** * 字母表分组工具 */ private SectionIndexer mIndexer; public ContactAdapter(Context context, int textViewResourceId, List objects) { super(context, textViewResourceId, objects); resource = textViewResourceId; } @Override public View getView(int position, View convertView, ViewGroup parent) { Contact contact = getItem(position); LinearLayout layout = null; if (convertView == null) { layout = (LinearLayout) LayoutInflater.from(getContext()).inflate(resource, null); } else { layout = (LinearLayout) convertView; } TextView name = (TextView) layout.findViewById(R.id.name); LinearLayout sortKeyLayout = (LinearLayout) layout.findViewById(R.id.sort_key_layout); TextView sortKey = (TextView) layout.findViewById(R.id.sort_key); name.setText(contact.getName()); int section = mIndexer.getSectionForPosition(position); if (position == mIndexer.getPositionForSection(section)) { sortKey.setText(contact.getSortKey()); sortKeyLayout.setVisibility(View.VISIBLE); } else { sortKeyLayout.setVisibility(View.GONE); } return layout; } /** * 给当前适配器传入一个分组工具。 * * @param indexer */ public void setIndexer(SectionIndexer indexer) { mIndexer = indexer; }}
- 2014-04-13下载
- 积分:1
-
Android开发精典案例60个
Android开发精典案例60个,内容包括 关于activity生命周期,按钮监听,列表,对话框,横竖屏切换处理,
canvas画布,游戏框架,帧动画,各种形状碰撞,游戏实战,截屏,蓝牙等内容,丰富,适合安卓初学者。
- 2022-07-06 19:04:35下载
- 积分:1
-
AbstractPoolEntry
A pool entry for use by connection manager implementations for Andriod.
- 2013-10-05 08:13:36下载
- 积分:1