Examples of parseContentList()


Examples of iqq.im.bean.QQMsg.parseContentList()

    long fromUin = pollData.getLong("from_uin");
    QQMsg msg = new QQMsg();
    msg.setId(pollData.getLong("msg_id"));
    msg.setId2(pollData.getLong("msg_id2"));
    msg.parseContentList(pollData.getJSONArray("content").toString());
    msg.setType(QQMsg.Type.BUDDY_MSG);
    msg.setTo(getContext().getAccount());
    msg.setFrom(store.getBuddyByUin(fromUin));
    msg.setDate(new Date(pollData.getLong("time") * 1000));
    if (msg.getFrom() == null) {
View Full Code Here

Examples of iqq.im.bean.QQMsg.parseContentList()

    long groupID = pollData.getLong("info_seq"); // 真实群号码
    QQGroup group = store.getGroupByCode(groupCode);
    if (group.getGid() <= 0) {
      group.setGid(groupID);
    }
    msg.parseContentList(pollData.getJSONArray("content").toString());
    msg.setType(QQMsg.Type.GROUP_MSG);
    msg.setGroup(group);
    msg.setTo(getContext().getAccount());
    msg.setDate(new Date(pollData.getLong("time") * 1000));

 
View Full Code Here

Examples of iqq.im.bean.QQMsg.parseContentList()

    QQMsg msg = new QQMsg();
    long fromUin = pollData.getLong("send_uin");
    long did = pollData.getLong("did");

    msg.parseContentList(pollData.getJSONArray("content").toString());
    msg.setType(QQMsg.Type.DISCUZ_MSG);
    msg.setDiscuz(store.getDiscuzByDid(did));
    msg.setTo(getContext().getAccount());
    msg.setDate(new Date(pollData.getLong("time") * 1000));

 
View Full Code Here

Examples of iqq.im.bean.QQMsg.parseContentList()

    long fromUin = pollData.getLong("from_uin");
    long fromQQ = pollData.getLong("ruin"); // 真实QQ
    int serviceType = pollData.getInt("service_type"); // Group:0,Discuss:1
    long typeId = pollData.getLong("id"); // Group ID or Discuss ID

    msg.parseContentList(pollData.getJSONArray("content").toString());
    msg.setType(QQMsg.Type.SESSION_MSG);
    msg.setTo(getContext().getAccount());
    msg.setDate(new Date(pollData.getLong("time") * 1000));

    QQUser user = store.getBuddyByUin(fromUin); // 首先看看是不是自己的好友
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.