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.FLA G_ACTIVITY_CLEAR_TOP);
Intent intent = new Intent(Intent.ACTION_VIEW)
intent.setDataAndType(path
intent.setFlags(Intent.FLA