簡體   English   中英

如何為聊天應用程序在android中更新新消息的listview

[英]how to update the listview for the new message in android for the chat application

我使用列表視圖來顯示聊天,因為我使用asynctask從數據庫中檢索消息,然后使用適配器和arraylist在項目中填充消息。 然后如何為每條新消息更新listview以及如何保持滾動位置以及如何在android標題中顯示新消息的通知。

這是我的聊天活動

 public class ChatActivity extends Activity implements OnScrollListener {
        ListView listview;

        MessageTask task;
        Handler handler;
        ArrayList<String> tExp=new ArrayList<String>();
        Boolean loadingMore = true;
        List list = new ArrayList();
        Boolean stopLoadingData = false;

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

             txt=(TextView)findViewById(R.id.roomname);
            listview =(ListView)findViewById(R.id.messagelist);
             edit=(EditText)findViewById(R.id.editText1);

             txt.setText(message);

             task = new MessageTask();
             task.execute(new String[]{URL});


        }



     class MessageTask extends AsyncTask<String, Void, List<String>> {

             private final HttpClient Client = new DefaultHttpClient();

            @TargetApi(Build.VERSION_CODES.HONEYCOMB)
            @Override
            protected List<String> doInBackground(String... params) {

                String output = "";
               for(String out:params){

                     try{
                     HttpGet httpget = new HttpGet(out);
                     ResponseHandler<String> responseHandler = new BasicResponseHandler();
                     output = Client.execute(httpget, responseHandler);

                       try {


                        JSONObject jObject= new JSONObject(output);
                        JSONArray menuObject = new JSONArray(jObject.getString("response"));   

                        //HashMap<String,ArrayList> map = new HashMap<String,ArrayList>();

                      for (int i = 0; i<menuObject.length(); i++)
                      {

                         list.add(menuObject.getJSONObject(i).getString("fk_username_c").toString()+" "+menuObject.getJSONObject(i).getString("message_c").toString());     

                     }
                      adapter=new ArrayAdapter<String>(ChatActivity.this,android.R.layout.simple_list_item_1);

                       } catch (JSONException e) {
                           Log.e("log_tag", "Error parsing data ");
                       }
                     }catch(Exception e){
                         Log.i("Animation", "Thread  exception " );
                     }
               }

              return list;

            }


    @Override      
    protected void onPostExecute(List<String> list) {


          adapter.notifyDataSetChanged();
          listview.setAdapter(adapter);
          adapter.clear();
         listview.clearTextFilter();
          adapter.addAll(list);
          loading=false;

     }
    }


        @Override
        public boolean onCreateOptionsMenu(Menu menu) {
            // Inflate the menu; this adds items to the action bar if it is present.
            getMenuInflater().inflate(R.menu.chat, menu);
            return true;
        }

    }

請幫助我如何僅在數據庫中收到每條新消息時更新listview。

您將需要在onProgressUpdate方法中更新列表內容

ArrayList<Message> messages;
@Override
        public void onProgressUpdate(String... v) {

            /*
             * check wether we have already added a status message
             */
            if (messages.get(messages.size() - 1).isStatusMessage) {
                /*
                 * update the status for that
                 */
                messages.get(messages.size() - 1).setMessage(v[0]);
                adapter.notifyDataSetChanged();
                getListView().setSelection(messages.size() - 1);
            } else {
                /*
                 * add new message, if there is no existing status message
                 */
                addNewMessage(new Message(true, v[0]));
            }
        } 

接着

@Override
        protected void onPostExecute(String text) {

            /*
             * check if there is any status message, now remove it.
             */
            if (messages.get(messages.size() - 1).isStatusMessage) {
                messages.remove(messages.size() - 1);
            }
            /*
             * add the orignal message from server.
             */
            addNewMessage(new Message(text, false));
        }

    }

    void addNewMessage(Message m) {
        messages.add(m);
        adapter.notifyDataSetChanged();
        getListView().setSelection(messages.size() - 1);
    }

有可用的源代碼, 簡單Android即時消息應用程序。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM