-
图片滤镜
图片滤镜图片滤镜图片滤镜图片滤镜
- 2013-11-02下载
- 积分:1
-
Android System startup process
说明: Android System startup process
- 2019-05-17 09:50:37下载
- 积分:1
-
AndroidManifestParser
Checks that a class is valid and can be used in the Android Manifest.
- 2013-10-14 23:11:56下载
- 积分:1
-
Android-SQLite-Page-GridView
Android实现列表GridView简单分页效果源码(Android simple list GridView paging effect source)
- 2012-09-10 09:59:33下载
- 积分:1
-
Android.doc
android 开发工具指南,里面有对安卓系统的介绍,文档不错,可以当作安卓开发的补充知识。(android tutorial)
- 2013-07-02 20:47:02下载
- 积分:1
-
Bluetooth-chat
蓝牙聊天,android各种特征对学习有很大帮助!!!!(Bluetooth chat, android various features are of great help to learn!!!!!!!!!!)
- 2013-01-13 17:05:41下载
- 积分:1
-
android 定时进入飞行模式 例子源码下载
在指定的时间进入飞行模式,是一种免打扰不错的应用
- 2014-09-09下载
- 积分:1
-
android在WiFi下手机与电脑的socket通信
在wifi局域网下,手机可以和电脑通过socket通信。手机做服务端,电脑做客户端;也可以反过来,电脑做服务端,手机做客户端。下面介绍的是手机作为服务端,电脑使用MFC编程作为客户端,原理是,手机建立一个ServerSocket,并获取自己的ip地址和端口port;然后电脑通过socket连接手机的ip:port。
- 2014-07-02下载
- 积分:1
-
BaiduMapTest
android使用百度地图实现旋转,我的位置,交通地图等功能(android implement rotation using Baidu map, my position, traffic maps and other functions)
- 2015-05-26 13:59:30下载
- 积分: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