Updated on 2026-08-14

This commit is contained in:
Tangem 2018-06-19 16:12:24 +03:00
parent c895aef0a1
commit 6f50174492
2 changed files with 10 additions and 8 deletions

View file

@ -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()));

View file

@ -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"