展开全部
核心代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | boolean isSdCardExist = Environment.getExternalStorageState().equals( Environment.MEDIA_MOUNTED); // 判断sdcard是否存在 if (isSdCardExist) { String sdpath = Environment.getExternalStorageDirectory() .getAbsolutePath(); // 获取sdcard的根路径 textView1.setText( "sd卡是存在的。以下是sdcard下的img25.jpg!" ); String filepath = sdpath + File.separator + "img25.jpg" ; File file = new File(filepath); ImageView imageView = new ImageView( this ); //创建一个imageView对象 if (file.exists()) { Bitmap bm = BitmapFactory.decodeFile(filepath); // 将图片显示到ImageView中 imageView.setImageBitmap(bm); linearLayout1.addView(imageView); } } else { textView1.setText( "sd卡不存在!" ); } |
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询