Pkmmte / PkRSS

A powerful RSS feed manager for Android
Apache License 2.0
100 stars 23 forks source link

Image is always null #39

Open norrisboat opened 7 years ago

norrisboat commented 7 years ago

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

norrisboat commented 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