Xamarin.Android – SwipeRefreshLayout Kullanımı

18 Şub
SwipeRefreshLayoutExample

Örneğin bir Listview’ınız var ve bu Listview’a datanızı basıyorsunuz. Yapmamız gereken ilk adım, Listview’ı SwipeRefreshLayout içerisine almak. Şöyle: <android.support.v4.widget.SwipeRefreshLayout android:id="@+id/swipeRefreshLayoutMain" android:layout_width="match_parent" android:layout_height="match_parent"> <ListView android:id="@+id/listMain" android:layout_width="match_parent" android:layout_height="match_parent"/> </android.support.v4.widget.SwipeRefreshLayout> Şimdi kod kısmına geçip, ilgili objeyi çekip, refresh olduğunda yapacaklarımızı yazabiliriz. Benim örneğimde, … Read More »