要在Android中使用MediaStore与pdf文件,可以按照以下步骤进行操作:
import android.content.ContentResolver;
import android.content.ContentUris;
import android.content.ContentValues;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.provider.MediaStore;
import android.view.View;
private Uri createPdfFile(String pdfFileName) {
ContentValues values = new ContentValues();
values.put(MediaStore.Files.FileColumns.DISPLAY_NAME, pdfFileName);
values.put(MediaStore.Files.FileColumns.MIME_TYPE, "application/pdf");
values.put(MediaStore.Files.FileColumns.RELATIVE_PATH, Environment.DIRECTORY_DOCUMENTS);
ContentResolver resolver = getContentResolver();
Uri uri = resolver.insert(MediaStore.Files.getContentUri("external"), values);
OutputStream outputStream;
try {
outputStream = resolver.openOutputStream(uri);
// TODO: 将pdf内容写入outputStream
outputStream.close();
return uri;
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
在上面的代码中,pdfFileName
是pdf文件的名称,可以根据实际需求进行修改。
private void openPdfFile(Uri pdfUri) {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(pdfUri, "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
try {
startActivity(intent);
} catch (ActivityNotFoundException e) {
// 处理pdf阅读器未安装的情况
e.printStackTrace();
}
}
在上面的代码中,pdfUri
是之前创建并保存到MediaStore的pdf文件的Uri。
String pdfFileName = "example.pdf";
Uri pdfUri = createPdfFile(pdfFileName);
openPdfFile(pdfUri);
以上就是使用MediaStore与pdf文件的解决方法,其中的TODO部分需要根据实际需求来编写生成pdf文件的逻辑。
上一篇:Android:使用LiveData进行网络调用堆叠
下一篇:Android:使用OpenGL纹理/HardwareBuffer自定义NDK/C++ android.media.Image实现