我是新手,因此,有很多我不知道的事情。
我正在构建我的第一个应用程序,使用PHP和Java,以及我的 数据库在Phpmyadmin上分配。
要获取我想要的数据,我必须创建一个PHP查询和输出 一切都使用Json。要获取Json数据,我使用Java。
我一直在搜索我的问题几个小时,不幸的是, 在我的情况下,我无法找到符合我想要的具体方法。一世 想要在新记录时自动更新我的ListView 插入我的数据库。
让我们想象您正在观看Listview,以及当时的主人 从应用程序在表上显示一条新记录 Listview数据,Listview自动显示新记录。
我的问题是我使用Json获取数据,但我不能 改变这一点。我想为此找到解决方案。
所以,我想知道是否有可能这样做。我会 在这里发布我的完整代码:
Json标签 - 在此处调用URL和Json标记:
public class ListUsersActivity extends ListActivity {
private ProgressDialog pDialog;
private ImageView img;
// URL to get contacts JSON
private static String url = "http://192.168.1.67/example/db_config.php";
// JSON Node names
private static final String TAG_CONTACTS = "contacts";
private static final String TAG_ID = "id";
private static final String TAG_NAME = "name";
private static final String TAG_IMAGE = "pic_url";
private static final String TAG_USERID = "user_id";
private static final String TAG_BIRTH_DATE = "birth_date";
// contacts JSONArray
JSONArray contacts = null;
// Hashmap for ListView
ArrayList<HashMap<String, String>> contactList;
OnCreate - 调用Asynctask函数,并为我的联系人列表创建一个新的arraylist
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_lobby);
contactList = new ArrayList<HashMap<String, String>>();
ListView lv = getListView();
// Calling async task to get json
new GetContacts().execute();
}
Asynctask - 获取所有数据json
私有类GetContacts扩展了AsyncTask {
@Override
protected void onPreExecute() {
super.onPreExecute();
// Showing progress dialog
pDialog = new ProgressDialog(ListUsersActivity.this);
pDialog.setMessage("Please wait...");
pDialog.setCancelable(false);
pDialog.show();
}
@Override
protected Void doInBackground(Void... arg0) {
// Creating service handler class instance
NewSession app = (NewSession) getApplication();
String username = app.getUsername();
ServiceHandler sh = new ServiceHandler();
// Making a request to url and getting response
String jsonStr = sh.makeServiceCall(url + "?id=" + username, ServiceHandler.GET);
Log.d("Response: ", "> " + jsonStr);
if (jsonStr != null) {
try {
JSONObject jsonObj = new JSONObject(jsonStr);
// Getting JSON Array node
contacts = jsonObj.getJSONArray(TAG_CONTACTS);
// looping through All Contacts
for (int i = 0; i < contacts.length(); i++) {
JSONObject c = contacts.getJSONObject(i);
String id = c.getString(TAG_ID);
String name = c.getString(TAG_NAME);
String user_id = c.getString(TAG_USERID);
String birth_date = c.getString(TAG_BIRTH_DATE);
String pic_url_get = c.getString(TAG_IMAGE);
HashMap<String, String> contact = new HashMap<String, String>();
// adding each child node to HashMap key => value
contact.put(TAG_ID, id);
contact.put(TAG_USERID, user_id);
contact.put(TAG_BIRTH_DATE, getAge(birth_date) + " anos");
contact.put(TAG_IMAGE, "http://*****/images/" + user_id + "/" + pic_url_get);
// adding contact to contact list
contactList.add(contact);
}
} catch (JSONException e) {
e.printStackTrace();
}
} else {
Log.e("ServiceHandler", "Couldn't get any data from the url");
}
return null;
}
调用适配器
@Override
protected void onPostExecute(Void result) {
super.onPostExecute(result);
// Dismiss the progress dialog
if (pDialog.isShowing())
pDialog.dismiss();
/**
* Updating parsed JSON data into ListView
* */
costumeadapter adapter = new costumeadapter(
ListUsersActivity.this,
contactList,
R.layout.list_row,
new String[]{ TAG_NAME, TAG_BIRTH_DATE, TAG_USERID},
new int[]{ R.id.name,R.id.email, R.id.id });
setListAdapter(adapter);
}
}
我到目前为止尝试了
构建一个Timer并每次刷新我的GetContacts调用类 第二,但它不起作用,因为用户无法滚动,应用程序崩溃
我尝试使用notifyDataSetChanged,但我没有工作,因为我不确切知道如何实现它。
我希望你们能帮帮我。
感谢。
答案 0 :(得分:0)
只需使用
adapter.notifydatasetchanged()
您必须在setListAdapter()
之后添加它:
setListAdapter(adapter);
adapter.notifydatasetchanged();
答案 1 :(得分:0)
当然有可能。
构建一个Timer并每次刷新我的GetContacts调用类 第二,但它不起作用,因为用户无法滚动, 并且应用程序崩溃
因为你是在主线程上做的。在AsyncTask
或单独的线程中执行此操作。
我尝试使用notifyDataSetChanged但是我没有工作,因为我没有 我确切地知道如何实现它。
很简单,您在更新后调用适配器:adapter.notifydatasetchanged()
(more detail here)。