-
Android应用源码之仿QQ的头像选择弹出的对话框
Android应用源码之仿QQ的头像选择弹出的对话框
- 2014-09-11下载
- 积分: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
-
学生考勤管理系统
资源描述
function formReset(frame){
form1.reset();
return false;
}
function check(userName,userPass)
{
name = userName;
pass = userPass;
if (name.length < 1)
{ alert("请输入你的用户名!!");
document.form1.userName.focus() ;
return false;
}
else if (pass.length < 1)
{ alert(" 请输入你的密码!!");
document.form1.userPass.focus() ;
return false;
}
}
- 2022-07-19 21:23:22下载
- 积分:1
-
MTP_sourcode
MTP服务接口实现,包括苏洪明文档。该源码已经成功移植android2.3(Implement of MTP service. We have successfully ported it to android2.3)
- 2011-11-25 14:14:40下载
- 积分:1
-
订货管理系统
基于eclipse编写的一款订货管理系统软件,包含预定管理,宾客开单,消费管理,宾客结算,仓库管理,商品管理,系统管理等几个大模块。
- 2022-01-25 20:57:24下载
- 积分:1
-
android 引导界面 仿人人网
* 功能描述:导引界面(每张图片都执行的动画顺序,渐现、放大和渐隐,结束后切换图片和文字 * 又开始执行 渐现、放大和渐隐,当最后一张执行完渐隐,切换到第一张,从而达到循环效果)
- 2015-02-24下载
- 积分:1
-
Bluetooth-chat
蓝牙聊天,android各种特征对学习有很大帮助!!!!(Bluetooth chat, android various features are of great help to learn!!!!!!!!!!)
- 2013-01-13 17:05:41下载
- 积分:1
-
android api 手册(chm)
android api 手册(chm)
- 2015-01-09下载
- 积分:1
-
android Sax解析实例源码下载
android Sax解析实例源码下载
- 2014-03-14下载
- 积分:1
-
音乐播放器
一个存储音乐相关信息的程序,像apple ITunes,不需要真正播放音乐。
- 2022-04-18 16:57:03下载
- 积分:1