示例#1
0
 @UiThread
 void onError(String message) {
   if (listUpdateListener != null) {
     listUpdateListener.OnError(context, message);
   }
 }
示例#2
0
 @UiThread
 void notifyDataSetChanged() {
   if (listUpdateListener != null) {
     listUpdateListener.OnListUpdate();
   }
 }