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 의 그림 인 스 턴 스(필수)는 바로 작은 편집 이 여러분 에 게 공유 하 는 모든 내용 입 니 다.여러분 께 참고 가 되 고 저 희 를 많이 사랑 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Kotlin의 기초 - 2부지난 글에서는 Kotlin이 무엇인지, Kotlin의 특징, Kotlin에서 변수 및 데이터 유형을 선언하는 방법과 같은 Kotlin의 기본 개념에 대해 배웠습니다. 유형 변환은 데이터 변수의 한 유형을 다른 데이터...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.