passar para a parte dos pop ups

This commit is contained in:
2026-04-15 12:46:11 +01:00
parent 44a84f96b8
commit d112cd50d7
2 changed files with 6 additions and 1 deletions

View File

@@ -40,6 +40,11 @@ public class TelaInicialActivity extends AppCompatActivity {
return insets;
});
Fragment transacoesFragment2 = new TransacoesFragment();
getSupportFragmentManager().beginTransaction()
.replace(R.id.fragmentContainerView, transacoesFragment2)
.commit();
ImageView carteiraImageView = findViewById(R.id.carteiraImageView);
carteiraImageView.setOnClickListener(v -> {
Fragment transacoesFragment = new TransacoesFragment();

View File

@@ -412,7 +412,7 @@
<androidx.fragment.app.FragmentContainerView
android:id="@+id/fragmentContainerView"
android:layout_width="match_parent"
android:layout_height="900dp"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
app:layout_constraintTop_toBottomOf="@+id/barraCardView" />