Google recently added the SwipeRefreshLayout to the support library.

What's the most straightforward and proper way to be able to use this in an app that is targeting API level 14 that has previously been using the regular APIs for things like fragments?

有帮助吗?

解决方案

Since it's in the support library, you can simply include the library and use it. If you are referring to whether or not it can work with native Fragment instead of Fragment provided by the support library, it can.

It basically is just a decorator over a ListView or a ScrollView, you can follow the tutorial here: http://antonioleiva.com/swiperefreshlayout/

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top