-
蓝牙适配及文件传送
此为蓝牙通信实例
讲述如何建立蓝牙连接
如何进行配对操作
配对后进行蓝牙设备之间的数据传输
将建立的蓝牙通信进行断开连接操作等
可进行蓝牙之间文件的传输
- 2022-04-16 03:25:47下载
- 积分:1
-
android应用版本升级程序 源码下载
android应用版本升级程序 源码下载
- 2015-06-15下载
- 积分:1
-
简单音乐播放器
简单的音乐播放器,实现,播放,暂停,继续的功能。
- 2022-02-03 01:29:08下载
- 积分:1
-
Android UI
说明: I will share with you some tips for UI design in Android
- 2020-04-26 09:55:34下载
- 积分:1
-
数据库
demo,里面有一个utils,其他东西就没有多少了,utils进行了增删改查等操作,可以看看,没有了,对了是基于orm数据库的
- 2022-01-23 10:38:32下载
- 积分:1
-
android sqlite数据库操作 增、删、改、查询 已实现 【附源码】
实现了基本的 增删改查功能,并包含了基本的sqlite操作类
- 2013-03-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 SDFileExplorer SD卡文件浏览查看程序
SDFileExplorer源代码,用于Android SDFileExplorer SD卡文件浏览查看程序,你可发解如何判断是否存在sdcard、获取SDCard路径下的根目录,如何将目录依次读取至listView列表中,获取所有子文件的数组,输出内容到视图中,最终运行效果如图示。
- 2022-01-28 18:44:42下载
- 积分:1
-
MethodInfo
MethodInfo implements AbstractMethodInfo Source Code for Andriod.
- 2013-12-06 12:22:35下载
- 积分:1
-
android 标签云 例子源码下载
android 标签 tag 实例源码
- 2014-11-30下载
- 积分:1