我想在插入后刷新listView
或在数据库中删除它。我搜索过,发现notifyDataSetChanged()
,但我不知道如何使用它。
我使用AsyncTask
从服务器获取数据并将其插入SQLite数据库。问题是AsyncTask
类在另一个文件中。那么如何从AsyncTask
类访问适配器或列表视图?
有人可以解释如何做到这一点吗?甚至通过不同的方式。
这是我的代码:
public class devicesController extends SherlockFragment {
devicesDataSource deviceDS;
static devicesAdapter adapter;
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState){
View view = inflater.inflate(R.layout.devices, container, false);
/// Set device's datasource
deviceDS = new devicesDataSource(getActivity());
/// Assign the listview from the xml layout
ListView lv1 = (ListView) view.findViewById(R.id.devicesList);
/// Getting all devices from the SQLite database
deviceDS.open();
List<Devices> allDevices = null;
try {
allDevices = deviceDS.getAll();
} catch (ParseException e) {
e.printStackTrace();
Log.i("QUTAYBA", "ERROR showing data");
}
/// Set the results rows in a list adapter
adapter = new devicesAdapter(getActivity(), R.layout.devices_list, allDevices);
lv1.setAdapter(adapter);
return view;
}
AsyncTask类是:
public class bootstrapTask extends AsyncTask<Void, Void, Void> {
private static Context thisContext = null;
static devicesDataSource deviceDS;
private static devicesAdapter da;
public bootstrapTask(Context context, devicesAdapter deviceAdapt) {
thisContext = context;
deviceDS = new devicesDataSource(thisContext);
da = deviceAdapt;
}
@Override
protected Void doInBackground(Void... params) {
String data = dataHelper.checkDataFromServer(thisContext);
try {
JSONObject jsonData = new JSONObject(data);
deviceDS.createFromJsonArray(jsonData.getJSONArray("devices"));
} catch (JSONException e) {
Log.i("QUTAYBA", e.getMessage());
e.printStackTrace();
}
return null;
}
@Override
protected void onPostExecute(Void result) {
//da.notifyDataSetChanged();
super.onPostExecute(result);
}
@Override
protected void onPreExecute() {
super.onPreExecute();
}
@Override
protected void onProgressUpdate(Void... values) {
// TODO Auto-generated method stub
super.onProgressUpdate(values);
}
}
答案 0 :(得分:1)
将适配器作为参数,放入asyncTask类,并在postExcute()方法中刷新ListView(该方法由ui线程调用)。
答案 1 :(得分:1)
如果不在异步任务中传递适配器对象,还有一种更好的方法可以实现您想要的功能。
通过onPostExecute()
方法中的异步任务,您可以发送broadcast
意图,在您的活动中,您可以倾听并adapater.notifyDataSetChanged();
中的onRecieve()
。
答案 2 :(得分:0)
我认为在你的案例中使用的最好的事情是CursorLoader。在其他所有教程中,您可以查看this tutorial。