登录
首页 » Java » android UPNP 实例源码下载

android UPNP 实例源码下载

于 2014-08-30 发布
0 116
下载积分: 1 下载次数: 0

代码说明:

android UPNP 实例源码下载

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

发表评论

0 个回复

  • android 手机上调用插件打网页 示例代码
    手机上调用插件打开网页
    2015-03-13下载
    积分:1
  • android notification 通知示例源码下载
    android notification 通知示例源码下载
    2014-02-16下载
    积分:1
  • android SwitchButton 示例源码
    android SwitchButton 示例源码
    2014-07-17下载
    积分:1
  • Android底部菜单栏的两种实现方式 附完整源码
    Android底部菜单栏的两种实现方式 附完整源码
    2013-06-14下载
    积分:1
  • android调用 webservice的两种方法 示例源码下载
    android调用 webservice的两种方法 示例源码下载
    2013-10-23下载
    积分:1
  • Android上传视文件到服务器
    Android上传视文件到服务器
    2017-06-08下载
    积分:1
  • android 拍照后将照片即时上传到公网服务器(亲测通过),实例源码下载
    android拍照后上传照片至服务器,源码中的公网地址改成自己的网站网址即可 private String actionUrl="http://192.168.0.177:8077/test/upload";
    2013-02-05下载
    积分:1
  • android天天写日志 应用源码
    android天天写日志 应用源码
    2015-12-01下载
    积分:1
  • 高仿京东商城
    高仿京东商城
    2015-10-13下载
    积分: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
  • 696518资源总数
  • 104349会员总数
  • 32今日下载