14
SwipeRefreshLayout setRefreshing () no muestra el indicador inicialmente
Tengo un diseño muy simple, pero cuando llamo setRefreshing(true)a onActivityCreated()mi fragmento, no se muestra inicialmente. Solo se muestra cuando hago una extracción para actualizar. ¿Alguna idea de por qué no aparece inicialmente? Fragmento xml: <android.support.v4.widget.SwipeRefreshLayout android:id="@+id/swipe_container" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent"> <ScrollView android:layout_width="match_parent" android:layout_height="match_parent"> <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> </RelativeLayout> </ScrollView> </android.support.v4.widget.SwipeRefreshLayout> …