• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps app that opens pdf file

tdsotm111

Lurker
Hi congrats for that great forum.

I'd appreciate it, if someone give me some directions on how to create an android app (eclipse) that opens for viewing a couple of pdf files tha are already embeded in the app

Thanks in advance
Andreas.
 
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType((Uri.parse("file://"+m_last_generated_report)), "application/pdf");
PackageManager pm = getPackageManager();
List<ResolveInfo> activities = pm.queryIntentActivities(intent, 0);
if (activities.size() > 0)
{
startActivity(intent);
}
 
Back
Top Bottom