-1

我正在制作一个对想要获得驾驶执照的人有用的 android 应用程序,但我不知道如何进行以下操作:我有主要活动。现在,通过按急救按钮,我想显示带有急救说明的文本或 pdf。基本上我想对机械和立法做同样的事情。对不起我的英语,这不是我的第一语言。

4

1 回答 1

5

对于单击按钮打开 pdf 文件,请在侦听器中放置以下代码。

 String FILE = Environment.getExternalStorageDirectory().getPath()+"/abc.pdf";   

 File file = new File(FILE); 

 //file should contain path of pdf file/
 Uri path = Uri.fromFile(file);
 Intent intent = new Intent(Intent.ACTION_VIEW);
 intent.setDataAndType(path, "application/pdf");
 intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

 try {
       startActivity(intent);
     } 
     catch (ActivityNotFoundException e)
     {
            Toast.makeText(this, 
                "No Application Available to View PDF", 
                Toast.LENGTH_SHORT).show();
        }
于 2013-03-09T12:24:32.803 回答