내부 저장소에 파일을 가져올 수있는 앱을 만들었습니다. 외부 응용 프로그램 (예 : PF 뷰어 또는 사진)을 사용하여 파일을 열려면이 가이드 (, topic1, topic2, topic3 및 topic4)을 따르려고했으나 성공하지 못했습니다. 내 매니페스트FileProvider를 사용하는 이유 외부 응용 프로그램과 함께 INTERNAL STORAGE에서 파일을 열 수 없습니까?
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="com.myapp.chatcher"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
내 패키지 값
: package="com.myapp.catcher"
내 file_paths.xml
<paths
xmlns:android="http://schemas.android.com/apk/res/android">
<files-path name="projection" path="." />
</paths>
내 코드
다음 내 코드입니다 예PRIVATE -> shelf1 -> my files
-> shelf2 -> my files
-> shelfN -> my files
: data/user/0/com.myapp.chatcher/files/PRIVATE/testshelf/Screenshot_2017-01-04-09-45-13.png
newFile.getAbsolutePath()를 인쇄 결과가이 코드의 선택을 연다
/data/user/0/com.myapp.chatcher/files/PRIVATE/bogl/imagetest.jpg
이다
String fileName = path.substring(path.lastIndexOf("/") + 1);
String shelf = path.substring(path.lastIndexOf("PRIVATE") + 8, path.lastIndexOf("/"));
File filePath = new File(mContext.getFilesDir(), "PRIVATE".concat("/").concat(shelf).concat("/"));
File newFile = new File(filePath, fileName);
Uri contentUri = FileProvider.getUriForFile(mContext, "com.myapp.chatcher", newFile);
Intent myIntent = new Intent();
myIntent.setAction(Intent.ACTION_VIEW);
myIntent.setData(contentUri);
myIntent.setType(mimeType);
myIntent.setFlags(FLAG_GRANT_READ_URI_PERMISSION | FLAG_GRANT_WRITE_URI_PERMISSION);
mContext.startActivity(myIntent);
은이 같은 계층 구조를 만들어 "사진"을 클릭 한 다음 imagetest.jpg를 표시하지 않고 "모든 사진이있는 폴더"를 열지 않고 "사진 응용 프로그램"을 엽니 다. pdf 파일로 시도해도 pdf가 열리지 않고 "no media"라는 메시지가 표시됩니다. 내 코드를 잘못 무엇
?
댓글이 확장 된 논의하지 않습니다; 이 대화는 [채팅으로 옮겼습니다] (http://chat.stackoverflow.com/rooms/133634/discussion-on-question-by-machoprogrammer-why-using-a-fileprovider-i-cant-open). –