ImageView中显示SD卡上的图片

Android应用中显示SD卡上的图片可以使用ImageView,并用BitmapFactory的decodeFile读取文件
例如在SD卡根目录下有个JPG文件DSC0001.jpg。main.xml文件如下:
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.         android:orientation="vertical"
  4.         android:layout_width="fill_parent"
  5.         android:layout_height="fill_parent">

  6. <ImageView
  7.         android:id="@+id/jpgview"
  8.         android:layout_width="fill_parent"
  9.         android:layout_height="fill_parent"
  10. />

  11. </LinearLayout>
JAVA代码如下:
  1.           public void onCreate(Bundle savedInstanceState) {
  2.                   super.onCreate(savedInstanceState);
  3.                   setContentView(R.layout.main);
  4.                   ImageView jpgView = (ImageView)findViewById(R.id.jpgview);
  5.                   String myJpgPath = "/sdcard/DSC_0001.JPG";
  6.                   BitmapFactory.Options options = new BitmapFactory.Options();
  7.                   options.inSampleSize = 2;
  8.                   Bitmap bm = BitmapFactory.decodeFile(myJpgPath, options);
  9.                   jpgView.setImageBitmap(bm);

你可能感兴趣的:(ImageView中显示SD卡上的图片)