我想在点击“pdfButton”期间打开一个pdf文件(可在Android手机的“下载”文件夹中找到) 执行操作时,没有任何反应,没有记录错误或显示pdf文件。有人可以帮忙吗?
package com.mycompany.myfirstglapp;
import android.app.Activity;
import android.content.ActivityNotFoundException;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.os.Environment;
import android.util.Log;
import android.view.SurfaceView;
import android.webkit.WebView;
import android.widget.Toast;
import java.io.File;
/**
* Created by admin on 1/11/2016.
*/
public class PdfActivity extends Activity {
private SurfaceView surface;
Button pdfButton;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_pdf);
surface = (SurfaceView) findViewById(R.id.pdfSurface);
pdfButton = (Button) findViewById(R.id.pdfView);
pdfButton .setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
// On click will call the showPdf method to display the pdf file in sd card or downloads
showPdf(view);
}
});
}
public void showPdf(View view) {
// The pdf file [LawsofthegamewebEN_Neutral.pdf] is avaialble in Android > Downloads folder.
File file = new File(Environment.getExternalStorageDirectory().getAbsolutePath()+ "/LawsofthegamewebEN_Neutral.pdf");
if (file.exists()) {
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(PdfActivity.this,
"No Application Available to View PDF",
Toast.LENGTH_SHORT).show();
}
}
}
}
答案 0 :(得分:1)
如果您使用调试器单步执行代码,或者输入更多日志记录语句,我怀疑您会发现file.exists()
返回false
。而且,目前,在这种情况下你什么都不做。
我想打开一个pdf文件(可在Android手机的“下载”文件夹中找到)
这不是您的代码所在的位置。替换:
File file = new File(Environment.getExternalStorageDirectory().getAbsolutePath()+ "/LawsofthegamewebEN_Neutral.pdf");
使用:
File file = new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS), "LawsofthegamewebEN_Neutral.pdf");
另请注意,您的file.exists()
来电意味着您需要持有READ_EXTERNAL_STORAGE
权限。