-
andoird 读取PDF并翻页例子源码下载(含类库以及完整实例源码)
andoird 读取PDF并翻页例子源码下载(含类库以及完整实例源码)
- 2015-04-22下载
- 积分:1
-
esp8266 smart config apk
esp8266 smartconfig function for android apk, easy to use, siinple operation.
- 2022-04-27 16:49:01下载
- 积分:1
-
android4.3 蓝牙4.0 demo
android系统必须为4.3以上,手机支持蓝牙4.0,该项目已实行了蓝牙设备搜索,配对,连接,发现服务及特征值,断开连接等功能,参考官网地址:http://developer.android.com/guide/topics/connectivity/bluetooth-le.html
- 2022-06-14 16:02:40下载
- 积分:1
-
android 日历事例源码
android 日历事例源码
- 2015-02-02下载
- 积分:1
-
解析网络图片
解析网络图片
- 2020-11-10 20:39:46下载
- 积分:1
-
Android三种定位方式的实现
应用背景android三种定位方式。包含手机自带的GPS定位,根据百度API定位,根据高德定位的方式,提供位置信息。关键技术GPS、根据百度API定位、高德API定位
- 2023-06-15 09:50:17下载
- 积分:1
-
循环结构程序设计.pdf
【实例简介】循环结构程序设计.pdf
- 2021-12-21 00:31:29下载
- 积分:1
-
用安卓实现一个简单的安卓小程序,有四个小游戏
可以实现四个小游戏,有拼图,有画图板,有归宿地查询,有一个擦图片的功能。是课程设计的时候,老师教的,可以导入android adt里面,参考。
- 2022-06-27 22:05:16下载
- 积分: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 打开图片,可调节饱和度、色相和亮度
实现打开图片功能
- 2015-07-02下载
- 积分:1