如何通过在自定义列表视图适配器本身收集消息来显示聊天?

时间:2016-01-17 11:39:41

标签: java android listview chat listview-adapter

所以,我想要做的是使用自定义列表视图适配器在我的活动中显示聊天。

  

我有一个HTTPTask Activity处理服务器端交互并使用JSONObject进行响应。因此,每个服务器端的交互都运行良好。

     

我想要做的是不断更新聊天中的消息,方法是在设定的时间间隔内继续检查API,以便在聊天中填写消息。

我的问题是,这个人口流程应该在适配器或活动中完成吗?

而且,viewHolder如何在适配器中提供帮助?

这是我的活动

where ... in (..)

我的适配器似乎无法正常工作。

public class ChatActivity extends Activity {

TextView toUsername;
EditText replyText;
JSONObject resultObject;
StringBuilder reply,from_user_id,c_id;
MessageListViewAdapter myAdapter;
ListView listView;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_chat);

    toUsername = (TextView) findViewById(R.id.toUsername);
    replyText = (EditText) findViewById(R.id.replyText);
    reply = new StringBuilder("");
    listView = (ListView) findViewById(R.id.messages);
}

@Override
public void onResume(){
    super.onResume();

    Bundle bundle = getIntent().getExtras();
    if(bundle != null){
        toUsername.setText("" + bundle.get("ToUsername").toString());
        c_id = new StringBuilder(bundle.get("c_id").toString());
        from_user_id = new StringBuilder(bundle.get("FromUserId").toString());
    }

    myAdapter = new MessageListViewAdapter(getBaseContext(),c_id.toString(),from_user_id.toString());
    listView.setAdapter(myAdapter);
}

public void sendTextMsg(View view){
    reply.delete(0,reply.length());
    reply.append(replyText.getText().toString());
    if(!reply.toString().equals("")){
        Log.d("Values: ","c_id: " + c_id.toString() + " FromUserId: " + from_user_id.toString() + "ReplyText: " + reply.toString());

        try{
            resultObject = new HttpTask(getBaseContext()).doInBackground("replyInChat",c_id.toString(),replyText.getText().toString(),from_user_id.toString());
            if(resultObject.get("status").toString().equals("true")) {
                Toast.makeText(getBaseContext(), "Sent.", Toast.LENGTH_SHORT).show();
                replyText.setText("");
            }
            else {
                Toast.makeText(getBaseContext(), "Try Again.", Toast.LENGTH_SHORT).show();
            }
        }
        catch(JSONException e){ }

    }
}
}

3 个答案:

答案 0 :(得分:0)

如果每件事情都运转良好且您在适配器中显示最新的聊天消息时遇到问题,只需更改您的代码:

try{
        Log.d("cr_id: ",String.valueOf(cr_id).toString());
        //This is where the population should've taken place but didn't.
        resultObject = new HttpTask(context).doInBackground("sendMessages",conversation_id.toString(),String.valueOf(cr_id));
        if(resultObject.get("status").toString().equals("true")) {
            messages = resultObject.getJSONArray("messages");
            Log.d("Messages: ",messages.toString());
            for(int i=0;i<=messages.length();i++){
                list.add(messages.getJSONObject(i).get("reply_text").toString());
                this.notifyDataSetChanged(); // add this line
            }
        }
    }
    catch(JSONException e){ }

以下评论以获取更多信息

答案 1 :(得分:0)

我个人会在适配器外进行网络调用。使用代码当前如果用户要在列表中向上和向下滚动,网络调用将多次调用,这是您确定不想要的。

什么是更好的解决方案是在活动内部有一个方法来进行调用,然后设置一个调用该方法的定时器说每隔2-3分钟保存一次网络调用,你也可以添加一个刷新用户按钮,它们可以选择刷新数据本身,这些数据只会调用相同的方法。

View Holder设计模式可以帮助加快列表视图的速度并使其保持平滑。想一想,当页面首次加载时,getView将被多次调用以填充列表视图。在getView方法中,实例化UI小部件,即textview =(TextView)findviewbyid。现在视图持有者所做的是保留对这些ui元素的引用,这意味着你不必继续调用findViewById。

这篇文章更好地解释了它并进入了一些例子。

http://www.javacodegeeks.com/2013/09/android-viewholder-pattern-example.html

因此,假设您在活动中执行网络代码。收到回复后,您只需将邮件添加到列表中,然后notifyDataSetChanged();

答案 2 :(得分:0)

  

所以,最后我得到了一些实验。非常感谢Manikanta和Andy Joyce的宝贵答案。如果它不适合他们,我就不会再离开那里了。

这是我在自定义适配器中更改的内容。

public void add(ArrayList<String> list){
    this.list.clear();
    this.list.addAll(list);
    Log.d("List: ",this.list.toString());
    this.notifyDataSetChanged();
}
@Override
public View getView(final int position, View convertView, ViewGroup parent) {
    rowView = convertView;

    if (rowView == null) {
        LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        rowView = inflater.inflate(R.layout.message_list_layout, null);
        //configure view holder
        viewHolder = new ViewHolder();
        viewHolder.ItemText = (TextView) rowView.findViewById(R.id.list_item_text);
        rowView.setTag(viewHolder);
    }

    else {
        //fill data
        viewHolder = (ViewHolder) rowView.getTag();
    }

    viewHolder.ItemText.setText(list.get(position));

    return rowView;
}

这是我添加到我的活动

    @Override
public void onResume(){
    super.onResume();

    Bundle bundle = getIntent().getExtras();
    if(bundle != null){
        toUsername.setText("" + bundle.get("ToUsername").toString());
        c_id = new StringBuilder(bundle.get("c_id").toString());
        from_user_id = new StringBuilder(bundle.get("FromUserId").toString());
        //list.add(c_id.toString());
        //list.add(from_user_id.toString());
    }

    myAdapter = new MessageListViewAdapter(getBaseContext(),c_id.toString(),from_user_id.toString());
    listView.setAdapter(myAdapter);

    callAsynchronousTask();
    //myAdapter.add(list);
}
@Override
public void onPause(){
    super.onPause();
    timer.cancel();
}
public void callAsynchronousTask() {
    final Handler handler = new Handler();
    timer = new Timer();
    TimerTask doAsynchronousTask = new TimerTask() {
        @Override
        public void run() {
            handler.post(new Runnable() {
                public void run() {
                    //list.clear();
                    try{
                        resultChatObject = new HttpTask(getBaseContext()).doInBackground("sendMessages",c_id.toString(),String.valueOf(cr_id));
                        if(resultChatObject.get("status").toString().equals("true")) {
                            //list.clear();
                            messages = resultChatObject.getJSONArray("messages");
                            Log.d("Messages: ",messages.toString());
                            for (int i = 0; i <= messages.length(); i++) {
                                list.add(messages.getJSONObject(i).get("reply_text").toString());
                                if (cr_id < Integer.parseInt(messages.getJSONObject(i).get("cr_id").toString()))
                                    cr_id = Integer.parseInt(messages.getJSONObject(i).get("cr_id").toString());
                            }
                        }
                    }
                    catch (JSONException e) { }

                    myAdapter.add(list);
                }
            });
        }
    };
    timer.schedule(doAsynchronousTask, 0, 10000); //execute in every 10000 ms
}

为每个人欢呼!!!