登录
首页 » Java » android 上实现QQ互联(QQ登陆) 含全部接口sdk(oauth2.0协议)实例源码下载,亲测通过

android 上实现QQ互联(QQ登陆) 含全部接口sdk(oauth2.0协议)实例源码下载,亲测通过

于 2013-02-04 发布
0 289
下载积分: 1 下载次数: 0

代码说明:

基于oauth2.0协议,实现了QQ互联目前开放的所有接口,例如创建相册、上传照片、发表说说、同步动态等等 均已实现,并亲测通过。

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

发表评论

0 个回复

  • 安卓 树形视图实例源码下载
    安卓 树形视图实例源码下载
    2015-02-08下载
    积分:1
  • android 播放mjepg视频流代码
    android 播放mjepg视频流代码
    2015-03-17下载
    积分:1
  • 闹钟实现
    闹钟实现
    2021-02-20 10:39:43下载
    积分:1
  • android 可自定义样式的dialog 实例源码
    android 可自定义样式的dialog 实例源码
    2014-08-21下载
    积分:1
  • SpringMvc+Spring+Mybatis+Maven整合示例源码
    SpringMvc Spring Mybatis Maven整合示例源码
    2015-05-20下载
    积分:1
  • android listview滑动 示例代码
    android listview滑动 示例代码
    2015-01-08下载
    积分:1
  • android 指南针app源码下载
    android 指南针app源码下载
    2018-10-05下载
    积分:1
  • android 从相册选择一张或者多张图片例子源码下载
    android 从相册选择一张或者多张图片例子源码下载
    2015-05-08下载
    积分:1
  • listview 下拉刷新 android示例源码下载
    listview 下拉刷新 android示例源码下载
    2014-04-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
  • 696516资源总数
  • 106914会员总数
  • 0今日下载