Go to Location
I'm working on a script that will open to a particular location I can open the book with this ..
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIE W);
File file = new File("/sdcard/Books/Testbook.prc");
intent.setDataAndType(Uri.fromFile(file), "application/x-mobipocket-ebook");
startActivity(intent);
But when the book opens how do I output a go to location?
Any Ideas??
|