Esto me pasa cuando el ListView se encuntra en un segundo Fragment, por si tengo una actividad desde la que llamo a un Fragment para mostrar el ListView, aqui no hay problema.
En cambio cuando tengo una actividad desde la que muestro Fragment que contiene una serie de botones, desde los que llamo a un segundo Fragment para mostrar el ListView, aqui como digo cuando muesto uno de sus elementos al cerrarlo no se vuelve a mostrar el ListView.
No se si sera suficiento con este codigo, es el que tengo en el XML del segundo Fragment:
Código
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#FAFAFA" android:clickable="true" tools:context="com.darwindeveloper.horizontalscrollmenu.E_Cre"> <FrameLayout android:id="@+id/fragmen_cre" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_marginStart="4dp" android:layout_marginEnd="4dp" android:orientation="vertical" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent"> <androidx.constraintlayout.widget.ConstraintLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <ImageButton android:layout_width="match_parent" android:layout_height="wrap_content" ... ... .../> <Button android:id="@+id/btn_pdf_44" android:layout_width="wrap_content" android:layout_height="wrap_content" ... ... .../> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" ... ... .../> </androidx.constraintlayout.widget.ConstraintLayout> </FrameLayout> </RelativeLayout>