프로젝트내 drawable폴더에서 led그림을  intent로  이미지뷰를 호출해 보려고 하는데

 이미지뷰프로그램은 호출이 잘되는데 led그림파일을 가져오지 못하는군요 어디가 잘못됐는지

 알려주시면 감사하겠습니다.

 

Uri uri = Uri.fromFile(new File("android.resource://com.force/" +R.drawable.led)); 
                Intent intent = new Intent(Intent.ACTION_VIEW);
                intent.setDataAndType(uri, "image/*");
                                  
                try{
                 startActivity(intent);
                }catch( ActivityNotFoundException e ) {
                 Toast.makeText(getBaseContext(),"application not available", Toast.LENGTH_SHORT).show();
                }