1

我按下按钮时打开了一个 epub 文件,但是当我的 android 没有任何 epub 阅读器时,显示一个 toast 说请安装 epub 阅读器,但我的代码不起作用,并停止我的应用程序说应用程序意外停止。

Button leer = (Button) findViewById(R.id.Btnleer);
        leer.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v2) {
                // TODO Auto-generated method stub
                File file = new File("/sdcard/Mi Biblioteca/"+nomb+".epub");
                Intent intentreadf = new Intent(Intent.ACTION_VIEW);
                intentreadf.setDataAndType(Uri.fromFile(file),"application/epub+zip");
                intentreadf.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
                startActivity(intentreadf);

                try {
                    startActivity(intentreadf);
                } 
                catch (ActivityNotFoundException e) {
                    Toast.makeText(getApplicationContext(), 
                        "favor descargar lector epub.", 
                        Toast.LENGTH_SHORT).show();

} 
            }

            });
4

1 回答 1

0

在 . 之后删除第一个startActivity(intentreadf);命令intentreadf.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);。它在您的块之前被调用try-catch,因此引发异常。

于 2013-05-17T18:48:24.363 回答