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 江天部落格 閱讀(3940) 評論(0)  編輯  收藏 所屬分類: Android

          My Links

          Blog Stats

          常用鏈接

          留言簿(11)

          隨筆分類

          隨筆檔案

          文章分類

          文章檔案

          相冊

          相關鏈接

          搜索

          積分與排名

          最新隨筆

          最新評論

          閱讀排行榜

          評論排行榜

          主站蜘蛛池模板: 泗阳县| 改则县| 花垣县| 河东区| 华坪县| 常山县| 龙胜| 温泉县| 民权县| 嵊泗县| 商丘市| 金昌市| 霸州市| 老河口市| 措勤县| 酒泉市| 南丹县| 当阳市| 茶陵县| 南溪县| 府谷县| 沙洋县| 龙山县| 吕梁市| 云阳县| 新郑市| 烟台市| 客服| 紫阳县| 泰来县| 天气| 平果县| 响水县| 安塞县| 峨边| 寿宁县| 扶沟县| 桑日县| 天台县| 建湖县| 突泉县|