Applozic Android Custom UI 最新消息列表抛出 ArrayIndexOutOfBoundsException

Applozic Android Custom UI Latest message list throws ArrayIndexOutOfBoundsException

这是我的logcat

当我尝试使用此方法获取 android 自定义 UI 的最新消息列表时,图像出现错误。

ApplozicConversation.getMessageList(context, isScroll, new MessageListHandler() {
        @Override
        public void onResult(List<Message> messageList, ApplozicException e) {
            if(e == null){
            // do something
            }else{
            //Error in fetching messages. 
            e.printStrackTrace();
        }
    });

是的,我已经使用自定义 Class 解决了这个问题。 现在我在 onPostExecute 方法的 MessageListTask class 中添加了手动检查。

对于没有任何对话的用户,即列表中有 0 个对话的用户,将会出现此问题。