Wednesday 6 June 2012

Read Pdf in android

you can use intent.ACTION_VIEW and Uri to read a file.if u already have pdf reader installed then u can use Uri path = Uri.fromFile(file);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path, "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);