-
Demo_TabActivity弃用
一个TabControl页面中包含5个页面:主页页面,分类页面,购物车页面,用户中心页面,vip特权页面,在TabControl中包括5个按钮,每个按钮分别显示各个页面。
- 2022-03-31 23:05:32下载
- 积分:1
-
MapReduce
高性能计算与云计算
实验报告
——Map/Reduce编程
本实验的目的是通过练习掌握Map/Reduce编程的知识和技巧:
1) 熟悉建立分布式高性能计算平台Hadoop的基本步骤
2) 掌握用Map/Reduce编写并行计算程序的基本方法
3) 了解Map/Reduce计算程序在Hadoop下的运行和调试机制
(High-performance computing and cloud computing lab report Map/purpose of this experiment is to Reduce programming practice to master by Map/Reduce programming knowledge and skills: 1) be familiar with the basic steps to establish a high-performance distributed computing platform Hadoop 2) mastered by Map The basic method of parallel computing program/Reduce write 3) understand the Map/Reduce computer program to run and debug mechanism under the Hadoop)
- 2015-04-16 15:25:36下载
- 积分:1
-
mp3
该软件实现MP3播放器的基本功能,实现播放,暂停,停止,上一曲,下一曲(The software to achieve the basic functions of MP3 player to achieve play, pause, stop, previous song, next song)
- 2013-05-23 12:03:42下载
- 积分: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
-
java jtts 实现文本转语音
资源描述
java jtts 实现文本转语音
语音库为espeak
- 2022-06-30 11:12:45下载
- 积分:1
-
android 项目 记录日志例子
android 项目 记录日志例子
- 2014-09-17下载
- 积分:1
-
BaiduMapApiDemo
百度地图api,有各项功能的demo,详尽、具体,适合初学者探究(Baidu map api, there are various functions of the demo, detailed, specific, suitable for beginners to explore)
- 2013-10-23 14:45:55下载
- 积分:1
-
聊天室web应用程序,java开发
聊天室web应用程序,java开发,聊天室web应用程序,java开发,聊天室web应用程序,java开发聊天室web应用程序,java开发聊天室web应用程序,java开发聊天室web应用程序,java开发聊天室web应用程序,java开发聊天室web应用程序,java开发聊天室web应用程序,java开发聊天室web应用程序,java开发聊天室web应用程序,java开发
- 2022-03-02 00:00:40下载
- 积分:1
-
简易聊天室
用java实现的建议聊天室,具有基本的聊天功能,课群聊和私聊,服务器端具有发群公告和踢出在线者功能。
- 2022-03-18 22:51:33下载
- 积分:1
-
android系统 ContactsProvider模块源码下载
android系统 ContactsProvider模块源码下载
- 2014-10-27下载
- 积分:1