java - In Android App,I Need Pdfviewer Jar For Viewing pdf,AnyOne Can Help me? -


here,i open pdf raw folder,,,and use jar of pdfviewer,but problem is..viewing of pdf..i want open big size,and open in small size.. uripdf = "android.resource://" + getpackagename() + "/" + r.raw.knowhindi;

            final intent intent = new intent();             intent.setaction(android.content.intent.action_view);             intent.setdataandtype(uri.parse(uripdf), "pdf/*");             intent.setclass(getapplicationcontext(), second.class);             startactivity(intent); 

mupdf library better option;

http://mupdf.com/docs/how-to-build-mupdf-for-android


Comments

Popular posts from this blog

c++11 - Intel compiler and "cannot have an in-class initializer" when using constexpr -

rest - Spring boot: Request method 'PUT' not supported -

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -