-
android VideoView播放视频-source
android VideoView播放视频-source
- 2015-03-16下载
- 积分:1
-
epub reader on android iphone
These codes are for android iphon to open and read the epub documents.
These codes are for android iphon to open and read the epub documents.
These codes are for android iphon to open and read the epub documents.
These codes are for android iphon to open and read the epub documents.
These codes are for android iphon to open and read the epub documents.
- 2022-04-30 07:14:07下载
- 积分:1
-
theone我的第一个设计可以联网的游戏
【实例简介】
- 2021-09-15 00:30:58下载
- 积分:1
-
迷宫老鼠可视化版
资源描述迷宫老鼠可视化版,演示基于栈的深度优先搜索算法,障碍物随机生成,成功或失败可以看到相应的图片。开发环境java+eclipse,直接导入即可。
- 2022-06-11 12:23:09下载
- 积分: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
-
JSP+sql实现购物车功能
JSP+sql实现购物车功能
- 2023-05-20 01:25:04下载
- 积分:1
-
java开发的毕业设计-学籍管理系统
本代码实现学籍管理的所有功能,由我及我的团队充分合作完成,这这这还不够吗?不想说那么多了,反正谁下谁知道。呵呵,真的很好的
- 2022-12-31 13:10:05下载
- 积分:1
-
Android Launcher 源码修改可编译 例子源码
Android Launcher 源码修改可编译 例子源码
- 2014-10-10下载
- 积分:1
-
淘宝安全控件填密码源码
这个是淘宝安全控件填密码的源码。欢迎大家下载、试用。谢谢大家的支持!
- 2022-03-23 15:32:17下载
- 积分:1
-
简易计算器
采用java开发,具备图形界面,能完成基本的四则运算,并且能进行四则运算算式的运算,可以对包含括号的算式进行正确的运算!
- 2022-02-20 16:40:32下载
- 积分:1