Updated on 2026-08-14
This commit is contained in:
parent
c895aef0a1
commit
6f50174492
2 changed files with 10 additions and 8 deletions
|
|
@ -643,8 +643,8 @@ public class LoadedWallet extends Fragment implements SwipeRefreshLayout.OnRefre
|
|||
int visibleIOPuts = visibleFlag ? View.VISIBLE : View.GONE;
|
||||
|
||||
tvInputs.setVisibility(visibleIOPuts);
|
||||
lbInputs.setVisibility(visibleIOPuts);
|
||||
tvLastOutput.setVisibility(visibleIOPuts);
|
||||
// lbInputs.setVisibility(visibleIOPuts);
|
||||
// tvLastOutput.setVisibility(visibleIOPuts);
|
||||
|
||||
try {
|
||||
ivQR.setImageBitmap(generateQrCode(Objects.requireNonNull(engine).getShareWalletURI(mCard).toString()));
|
||||
|
|
@ -1330,12 +1330,12 @@ public class LoadedWallet extends Fragment implements SwipeRefreshLayout.OnRefre
|
|||
// btnSend.setText(mCard.getOutputsDescription());
|
||||
// }
|
||||
|
||||
if (tvLastInput != null) {
|
||||
tvLastInput.setText(mCard.getLastInputDescription());
|
||||
}
|
||||
if (tvLastOutput != null) {
|
||||
tvLastOutput.setText(mCard.getLastOutputDescription());
|
||||
}
|
||||
|
||||
tvLastInput.setText(mCard.getLastInputDescription());
|
||||
|
||||
|
||||
// tvLastOutput.setText(mCard.getLastOutputDescription());
|
||||
|
||||
|
||||
tvBlockchain.setText(mCard.getBlockchainName());
|
||||
ivBlockchain.setImageResource(mCard.getBlockchain().getImageResource(this.getContext(), mCard.getTokenSymbol()));
|
||||
|
|
|
|||
|
|
@ -265,6 +265,7 @@
|
|||
android:background="@android:color/darker_gray"/>
|
||||
|
||||
<LinearLayout
|
||||
android:visibility="gone"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="4dp"
|
||||
|
|
@ -294,6 +295,7 @@
|
|||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:visibility="gone"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue