-
类百度搜索引擎
通过lucene建立索引 通过JSP程序生成动态网页 通过Servlet和Tomcat服务器发布 基于中文关键字检索的全文搜索系统
- 2022-01-25 20:13:04下载
- 积分: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
-
vgprznb3
说明: 多载波以及扩频通信系统相关的书,主要内容有OFDM以及多载波CDMA,偏重于工程感念,理论性不是很强(Multicarrier and spread spectrum communication system related books, including OFDM and multicarrier CDMA, focus on engineering perception, the theory is not very strong)
- 2019-03-27 22:27:57下载
- 积分:1
-
Android应用源码之androidGPS及WIFI基站定位坐标源码.rar
【实例简介】
- 2021-09-07 00:31:13下载
- 积分:1
-
Hyperic 报警中心 alert center中文插件 源代码
资源描述采用 jsp, groovy, gsp, 开发。适合 hyepric 中文版 5.8
- 2022-02-12 18:13:50下载
- 积分:1
-
daocrud
android的DAO操作(provider带观察者模式)(
The DAO android operating (provider with observer pattern))
- 2013-12-14 00:57:35下载
- 积分:1
-
FrameLayoutTest
android学习工程,主要用framelayout帧布局来实现霓虹灯效果,类似于流水灯一样。(android study engineering, layout of framelayout frame to achieve the neon effect, similar to the light water.)
- 2013-04-23 23:20:25下载
- 积分:1
-
日语学习软件设计及相关资料
介绍了日语学习软件的设计及相关的资料,测试单词、测试单词成绩记录、测试文章、测试文章成绩记录、练习单词、练习单词成绩记录、练习文章、练习文章成绩记录等等。并详细介绍了窗体软件开发必备文档。
- 2022-02-12 02:59:06下载
- 积分:1
-
android布局中动态添加控件
android布局中动态添加控件
- 2015-04-22下载
- 积分:1
-
nist sip 堆栈
NIST 的 SIP 的解析器和堆栈 (v1.2) 耆那教的 SIP 1.1 参考执行说明与分配前缀 gov.nist.javax.sip 包集体形成耆那教的 SIP 1.1 官方参考实现 (RI)。
- 2023-04-24 16:05:03下载
- 积分:1