在Android中将新数据添加到数据库后更新listview
Posted
技术标签:
【中文标题】在Android中将新数据添加到数据库后更新listview【英文标题】:Update listview after adding new data into database in Android 【发布时间】:2013-02-27 05:12:42 【问题描述】:我想制作聊天室 android 应用程序,我使用 JSON 作为 Web 服务,使用 php、mysql 并在我的 Android 应用程序中解析它。最初能够看到数据,但即使在我的数据库中更新后也无法更新我的应用程序中的数据,我必须重新运行应用程序以获取更新的数据。我该如何解决这个问题。
代码:
package com.example.androidhive;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Timer;
import org.apache.http.NameValuePair;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
//import com.mekya.R;
import android.app.ListActivity;
import android.app.ProgressDialog;
import android.content.Intent;
import android.os.AsyncTask;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.EditText;
import android.widget.ListAdapter;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import android.widget.TextView;
public class AllProductsActivity extends ListActivity
// Progress Dialog
private ProgressDialog pDialog;
// Creating JSON Parser object
JSONParser jParser = new JSONParser();
ArrayList<HashMap<String, String>> all_chat;
// url to get all products list
private static String url_all_products = "http://url.com/chat-app/";
// JSON Node names
private static final String TAG_CHAT = "chat";
private static final String TAG_FROM = "from_u";
private static final String TAG_MESSAGE = "message";
private static final String TAG_DATE = "date";
// products JSONArray
JSONArray chat = null;
@Override
public void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.all_products);
// Hashmap for ListView
all_chat = new ArrayList<HashMap<String, String>>();
// Loading products in Background Thread
new LoadAllProducts().execute();
/**
* Background Async Task to Load all product by making HTTP Request
* */
class LoadAllProducts extends AsyncTask<String, String, String>
/**
* Before starting background thread Show Progress Dialog
* */
@Override
protected void onPreExecute()
super.onPreExecute();
pDialog = new ProgressDialog(AllProductsActivity.this);
pDialog.setMessage("Loading products. Please wait...");
pDialog.setIndeterminate(false);
pDialog.setCancelable(false);
pDialog.show();
/**
* getting All products from url
* */
protected String doInBackground(String... args)
// Building Parameters
List<NameValuePair> params = new ArrayList<NameValuePair>();
// getting JSON string from URL
JSONObject json = jParser.makeHttpRequest(url_all_products, "GET", params);
// Check your log cat for JSON reponse
Log.d("All Products: ", json.toString());
try
// products found
// Getting Array of Products
chat = json.getJSONArray(TAG_CHAT);
// looping through All Products
for (int i = 0; i < chat.length(); i++)
JSONObject c = chat.getJSONObject(i);
// Storing each json item in variable
String date = c.getString(TAG_DATE);
String from = c.getString(TAG_FROM);
String message = c.getString(TAG_MESSAGE);
// creating new HashMap
HashMap<String, String> map = new HashMap<String, String>();
// adding each child node to HashMap key => value
map.put(TAG_DATE, date);
map.put(TAG_FROM, from);
map.put(TAG_MESSAGE, message);
// adding HashList to ArrayList
all_chat.add(map);
catch (JSONException e)
e.printStackTrace();
return null;
/**
* After completing background task Dismiss the progress dialog
* **/
protected void onPostExecute(String file_url)
// dismiss the dialog after getting all products
pDialog.dismiss();
// updating UI from Background Thread
runOnUiThread(new Runnable()
public void run()
/**
* Updating parsed JSON data into ListView
* */
ListAdapter adapter = new SimpleAdapter(
AllProductsActivity.this, all_chat, R.layout.list_item, new String[] TAG_FROM,TAG_DATE, TAG_MESSAGE ,
new int[] R.id.from,R.id.date, R.id.message );
// updating listview
setListAdapter(adapter);
);
【问题讨论】:
在这里添加你的适配器的java代码 sajmon_d 先生,我不明白你的意思...... :( 我没有 java 代码适配器,gon id 做什么? sajmon 先生,我使用默认的列表适配器。我使用“导入 android.widget.ListAdapter;” 【参考方案1】:流程应该是这样的,
假设这是您的网址:http://www.xxx.com/get_chat.php?id=""
服务器应根据 id 参数发送响应。如果它什么都没有,则发送整个列表,否则发送比该 ID 更新的新数据。
所以,第一次你会得到整个列表,之后服务器会根据最后一项的 id 发送新数据。根据您提到的内容,我假设您可以更新您的数据库。
现在假设您有一个计时器,并且您的应用程序每秒钟向服务器发送一次请求(如果您想让它成为现实,这是一个可怕的假设。假设每秒钟有 10000 台设备向服务器发送请求!)。 如果没有数据:不做任何事情(应该检查 onPostExecute 方法) 如果有数据:从数据库中获取整个列表(因为之前添加了新数据,因此您将更新项目)并将其传递给您的适配器。
希望对你有帮助:)
【讨论】:
以上是关于在Android中将新数据添加到数据库后更新listview的主要内容,如果未能解决你的问题,请参考以下文章
在 Windows 窗体中将 list<T> 添加到列表框的类型错误
在 android 中将 SQLite 数据从平板电脑更新到手机
Android - 添加到 SQLite 数据库后不会更新 ListView,除非重新启动应用程序
在 android 中将按钮添加到我的 ListView 后,我的 onitemclick 不起作用?
在android studio中将firebase添加到flutter时出错:插件项目:firebase_core_web未找到。请更新 settings.gradle [重复]