Open norrisboat opened 7 years ago
I updated to 1.2 and now the AtomParser class comes but now the feeds aren't loading.
PkRSS.with(this).load("http://www.androidcentral.com/feed/").parser(new AtomParser()).callback(new Callback() {
@Override
public void onPreload() {
Log.v("norristest","preload");
}
@Override
public void onLoaded(List<Article> newArticles) {
Log.v("norristest","success "+newArticles.size());
List<Article> newArticles1 = newArticles;
}
@Override
public void onLoadFailed() {
Log.v("norristest","failed");
}
}).async();
I get only preload in my logical
I have tried several rss feed links and I always get null in the image field. e.g http://www.androidcentral.com/feed/. Can you help