Blogger Scott

在ImageView中显示SD卡上的图片

Android应用中显示SD卡上的图片可以使用ImageView,并用BitmapFactory的decodeFile读取文件。

例如在SD卡根目录下有个JPG文件DSC0001.jpg。main.xml文件如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
        android:orientation
="vertical"
        android:layout_width
="fill_parent"
        android:layout_height
="fill_parent">

<ImageView
        
android:id="@+id/jpgview"
        android:layout_width
="fill_parent"
        android:layout_height
="fill_parent"
/> 

</LinearLayout>


 

JAVA代码如下:

           public void onCreate(Bundle savedInstanceState) {
                   
super.onCreate(savedInstanceState);
                   setContentView(R.layout.main);
                   ImageView jpgView 
= (ImageView)findViewById(R.id.jpgview);
                   String myJpgPath 
= "/sdcard/DSC_0001.JPG"
                   BitmapFactory.Options options 
= new BitmapFactory.Options();
                   options.inSampleSize 
= 2;
                   Bitmap bm 
= BitmapFactory.decodeFile(myJpgPath, options);
                   jpgView.setImageBitmap(bm);




 

posted on 2010-02-19 15:01 江天部落格 阅读(3920) 评论(0)  编辑  收藏 所属分类: Android


只有注册用户登录后才能发表评论。


网站导航: