I'm trying to implement the new RefreshLayout widget but it seems my eclipse doesn't recognize the import I need to set. I used this guide to get started: Swipe to refresh GUIDE
And here is where it all started: Android dev - Swipe to refresh
My first guess was that I need to update my project in some way to get the latest android API's? I've never done that before and I don't even know that possible.
If anyone could lead me into the right direction to solve this problem that would be great.
The import line:
import android.support.v4.widget.SwipeRefreshLayout;
Manifest:
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="19" />
After updating the libraries to latest versions the import is still not recognized.