14
SwipeRefreshLayout setRefreshing ()이 처음에 표시기를 표시하지 않음
나는 아주 간단한 레이아웃을 가지고 있지만 내가 전화 할 때 setRefreshing(true)에 onActivityCreated()내 조각, 그것은 처음에 표시되지 않습니다. 새로 고치기 위해 풀을 할 때만 표시됩니다. 왜 처음에 나타나지 않는지 아는 아이디어가 있습니까? 조각 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> …