Android 에서 sdcard 의 그림 인 스 턴 스 읽 기(필수)

Android 가 sdcard 의 그림 을 읽 는 것 은 매우 간단 한 일 입 니 다.다음은 이 문 제 를 예 로 들 어 설명 하 겠 습 니 다.
우선,sdcard 에 준 비 된 img 25.jpg 가 있 습 니 다.

다음 에 해 야 할 일 은 이 그림 을 app 에 읽 어서 표시 하 는 것 입 니 다.다음 과 같은 효 과 를 얻 을 수 있 습 니 다:

1.우선 AndroidManifest.xml 에서 sdcard 를 읽 을 수 있 는 권한 을 신청 하고 문 구 를 추가 한 후에 AndroidManifest.xml 는 다음 과 같 습 니 다.

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.sdcardread"
  android:versionCode="1"
  android:versionName="1.0" >

  <uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="18" />

  <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <!--  SDCard       -->

  <application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
      android:name="com.sdcardread.MainActivity"
      android:label="@string/app_name" >
      <intent-filter>
        <action android:name="android.intent.action.MAIN" />

        <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>
    </activity>
  </application>

</manifest>
2.그 다음 에 res\values\strings.xml 에서 이 app 이름 을'그림 읽 기'로 바 꾸 었 습 니 다.이 단 계 는 하지 않 아 도 됩 니 다.프로그램 이 더욱 아름 답 기 위해 서 입 니 다.

<?xml version="1.0" encoding="utf-8"?>
<resources>

  <string name="app_name">    </string>
  <string name="action_settings">Settings</string>

</resources>

3、그 다음은 res\layout\activitymain.xml 에 id 가 있 는 Textview 를 배치 합 니 다.잠시 후 알림 정 보 는 이 Textview 에 기록 하고 id 가 있 는 선형 레이아웃 을 배치 합 니 다.잠시 후 그림 은 이 선형 레이아웃 에 추 가 될 것 이다.

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical" >

  <TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textSize="24sp" />

  <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textSize="24sp" />

  <LinearLayout
    android:id="@+id/linearLayout1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >
  </LinearLayout>

</LinearLayout>
4.전체 프로그램의 핵심 은 MainActivity.java 입 니 다.코드 는 다음 과 같 습 니 다.구성 요 소 를 가 져 온 후,먼저 Environment.getExternal StorageState().equals(Environment.MEDIAMOUNTED);sdcard 의 존재 여 부 를 판단 한 후 Environment.getExternalStorageDirectory().getAbsolutePath()를 사용 합 니 다.sdcard 의 절대 경 로 를 가 져 와 자바 의 File 류 를 읽 을 수 있 습 니 다.마지막 으로 ImageView 대상 을 만 들 고 선형 레이아웃 linearLayout 1 에 불 러 옵 니 다.

package com.sdcardread;

import java.io.File;

import android.os.Bundle;
import android.os.Environment;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;
import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;

public class MainActivity extends Activity {
	private TextView textView1;
	private LinearLayout linearLayout1;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		textView1 = (TextView) findViewById(R.id.textView1);
		linearLayout1 = (LinearLayout) findViewById(R.id.linearLayout1);
		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    !");
		}

	}

}
이상 의 안 드 로 이 드 읽 기 sdcard 의 그림 인 스 턴 스(필수)는 바로 작은 편집 이 여러분 에 게 공유 하 는 모든 내용 입 니 다.여러분 께 참고 가 되 고 저 희 를 많이 사랑 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기