You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there,
Thanks for the great library, it has been very helpful for my project.
Anyway, I couldn't figure out the way to refresh the tableview with new data.
transactionTableDataAdapter = new TransactionTableDataAdapter(this, transactionList); transactionTableView.setDataAdapter(transactionTableDataAdapter);
If I fresh the data in transactionList , tableview would also be refreshed?
Please let me know
Thanks
The text was updated successfully, but these errors were encountered:
// update your database in here
// ....
// show new data to tableview
transactionTableDataAdapter = new TransactionTableDataAdapter(this, transactionList);
transactionTableView.setDataAdapter(transactionTableDataAdapter);
transactionTableView.invalidate();
Hi there,
Thanks for the great library, it has been very helpful for my project.
Anyway, I couldn't figure out the way to refresh the tableview with new data.
transactionTableDataAdapter = new TransactionTableDataAdapter(this, transactionList); transactionTableView.setDataAdapter(transactionTableDataAdapter);
If I fresh the data in transactionList , tableview would also be refreshed?
Please let me know
Thanks
The text was updated successfully, but these errors were encountered: