SonTT
Results
1
comments of
SonTT
You can use something like below: new AsyncTask() { @Override protected Void doInBackground(Void... voids) { try { InputStream input = new URL("url here").openStream(); pdfView.fromStream(input).load(); } catch (IOException e) { e.printStackTrace();...