14
SwipeRefreshLayout setRefreshing () inizialmente non mostra l'indicatore
Ho un layout molto semplice, ma quando chiamo setRefreshing(true)a onActivityCreated()mio frammento, ma non mostra inizialmente. Mostra solo quando faccio un tiro per aggiornare. Qualche idea sul perché inizialmente non si presenta? Frammento 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> Codice …