Added account categories

This commit is contained in:
M66B
2021-10-03 21:45:18 +02:00
parent 8516de0491
commit 50af1c5fb5
11 changed files with 2746 additions and 6 deletions

View File

@@ -648,6 +648,13 @@ public class AdapterAccount extends RecyclerView.Adapter<AdapterAccount.ViewHold
return items.get(position).id;
}
public TupleAccountEx getItemAtPosition(int pos) {
if (pos >= 0 && pos < items.size())
return items.get(pos);
else
return null;
}
@Override
public int getItemCount() {
return items.size();