Exemplo n.º 1
0
 private void listNull() {
   if (adapter.getCount() == 0) {
     findViewById(R.id.null_tip).setVisibility(View.VISIBLE);
   } else {
     findViewById(R.id.null_tip).setVisibility(View.GONE);
   }
 }
Exemplo n.º 2
0
 private void refreshList(List<RechargeHistoryItemEntity> topup) {
   adapter.updateList(topup);
 }