Goose 사용법

    Android Readability API Goose Example

    /*-- AsyncTask --*/ private class GooseAsyncTask extends AsyncTask {@Override protected Void doInBackground(String... params) { String url = "https://medium.com/p/68aec3c94c3a"; Configuration config = new Configuration(); config.setLocalStoragePath(getApplicationContext().getCacheDir().getPath()); config.setEnableImageFetching(false); //Fetch image file Goose goose = new Goose(config); Article a..