Updated on 2026-08-14
This commit is contained in:
parent
b19c306250
commit
61c4f7047d
23 changed files with 1760 additions and 1754 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -254,7 +254,7 @@ public class LoadedWalletActivityFragment extends Fragment implements SwipeRefre
|
|||
@Override
|
||||
public View onCreateView(final LayoutInflater inflater, ViewGroup container,
|
||||
Bundle savedInstanceState) {
|
||||
View v = inflater.inflate(R.layout.fragment_loaded_wallet, container, false);
|
||||
View v = inflater.inflate(R.layout.fr_loaded_wallet, container, false);
|
||||
|
||||
mNfcManager = new NfcManager(this.getActivity(), this);
|
||||
|
||||
|
|
|
|||
|
|
@ -92,7 +92,7 @@ public class MainActivityFragment extends Fragment implements NfcAdapter.ReaderC
|
|||
|
||||
@Override
|
||||
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
|
||||
View result = inflater.inflate(R.layout.fragment_main, container, false);
|
||||
View result = inflater.inflate(R.layout.fr_main, container, false);
|
||||
|
||||
mNfcManager = new NfcManager(this.getActivity(), this);
|
||||
verifyPermissions();
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ public class VerifyCardActivityFragment extends Fragment implements SwipeRefresh
|
|||
public View onCreateView(final LayoutInflater inflater, ViewGroup container,
|
||||
Bundle savedInstanceState) {
|
||||
|
||||
View v = inflater.inflate(R.layout.fragment_verify_card, container, false);
|
||||
View v = inflater.inflate(R.layout.fr_verify_card, container, false);
|
||||
|
||||
mNfcManager = new NfcManager(this.getActivity(), this);
|
||||
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@ public class WalletInfoFragment extends Fragment {
|
|||
public View onCreateView(LayoutInflater inflater, ViewGroup container,
|
||||
Bundle savedInstanceState) {
|
||||
// Inflate the layout for this fragment
|
||||
View result=inflater.inflate(R.layout.fragment_wallet_info, container, false);
|
||||
View result=inflater.inflate(R.layout.fr_wallet_info, container, false);
|
||||
|
||||
ImageView mImage= (ImageView)result.findViewById(R.id.qrWallet);
|
||||
try {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue