登录
首页 » Java » Android与.net交互例子源码下载(web service)

Android与.net交互例子源码下载(web service)

于 2015-03-30 发布
0 156
下载积分: 1 下载次数: 0

代码说明:

web service实现 android 与.net 交互

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 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
  • listview 滑动分页示例源码
    android 滑动分页
    2014-04-13下载
    积分:1
  • android验证码的整个实现过程和所有的代码
    android验证码的整个实现过程和所有的代码
    2014-11-07下载
    积分:1
  • rtmp netty 流服务器
    【实例简介】基于netty4.0 实现的rtmp 协议demo 推拉流已经实现
    2021-06-14 00:31:34下载
    积分:1
  • android 右侧字母列表 abcde.... 放微信联系人
    android 右侧字母列表 abcde.... 放微信联系人
    2015-01-20下载
    积分:1
  • android 模拟qq送表情功能 例子源码下载
    模拟QQ或微信的发送表情功能
    2015-04-16下载
    积分:1
  • fragment+viewpager+定位的代码
    fragment viewpager 定位的代码
    2015-05-15下载
    积分:1
  • 简单转盘实现
    简单转盘实现
    2013-12-31下载
    积分:1
  • android 裁剪图片,多功能2D绘图 例子
    android 2d绘图例子
    2014-09-18下载
    积分:1
  • android popup和dialog 效果对比
    android popup和dialog 效果对比
    2015-07-02下载
    积分:1
  • 696518资源总数
  • 106148会员总数
  • 10今日下载