Updated on 2026-08-14

This commit is contained in:
Tangem 2018-05-29 20:21:36 +03:00
parent b19c306250
commit 61c4f7047d
23 changed files with 1760 additions and 1754 deletions

View file

@ -361,7 +361,7 @@ public class CardListAdapter extends RecyclerView.Adapter<CardListAdapter.CardVi
@Override
public CardViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View v = LayoutInflater.from(parent.getContext()).inflate(R.layout.card_list_item, parent, false);
View v = LayoutInflater.from(parent.getContext()).inflate(R.layout.item_list_card, parent, false);
CardViewHolder cvh = new CardViewHolder(v);
return cvh;
}

View file

@ -53,7 +53,7 @@ public class CardUnspentListAdapter extends BaseAdapter {
@Override
public View getView(int position, View convertView, ViewGroup viewGroup) {
if (convertView == null) {
convertView = mLayoutInflater.inflate(R.layout.card_unspent_list_item, viewGroup,
convertView = mLayoutInflater.inflate(R.layout.item_list_card_unspent, viewGroup,
false);
}
TextView tvItem = (TextView) convertView.findViewById(R.id.tvItem);