안 드 로 이 드 의 그림 을 메모리 에 불 러 오 는 인 스 턴 스 코드

5022 단어 android그림.로드
이 글 은 안 드 로 이 드 의 그림 을 메모리 에 불 러 오 는 것 을 보 여 줍 니 다.
우선 디자인 인터페이스:

코드 는 다음 과 같 습 니 다:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity" >
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="load"
android:text="       " />
<ImageView
android:id="@+id/iv"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</LinearLayout>
mnt/sdcard 에 테스트 그림 업로드
논리 부분 코드 추가:

public class MainActivity extends Activity {
private ImageView iv;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
iv = (ImageView) findViewById(R.id.iv);
}
public void load() {
Bitmap bitmap = BitmapFactory.decodeFile("/sdcard/a.jpg");
iv.setImageBitmap(bitmap);
}
}
코드 를 실행 하 는 중 오류 가 발생 했 습 니 다.그림 이 너무 커서(큰 사진 을 선 택 했 습 니 다)
BitmapFactory 에 포 함 된 정적 클래스 Options 를 사용 하여 그림 정 보 를 분석 하지 않 는 전제 에서 그림 의 너비 와 높이 정 보 를 얻 을 수 있 습 니 다.

BitmapFactory.Options opts = new Options();
//         ,              
opts.inJustDecodeBounds = true;

BitmapFactory.decodeFile("/sdcard/a.jpg", opts);
int imageHeight = opts.outHeight;
int imagewidth = opts.outWidth;
System.out.println("   :" + imagewidth);
System.out.println("   " + imageHeight);
실행 하기:
I/System.out(1812):그림 너비:2560
I/System.out(1812):그림 높이 1920
다음은 핸드폰 화면의 너비 와 높이 를 얻 을 수 있 습 니 다.

//         
WindowManager wm = (WindowManager)getSystemService(WINDOW_SERVICE);
int height = wm.getDefaultDisplay().getHeight();
int width = wm.getDefaultDisplay().getWidth();
getHeight 와 getWidth 방법 이 모두 유행 이 지 났 음 을 볼 수 있 습 니 다.다음 방법 으로 대체 합 니 다.

//          
WindowManager wm = (WindowManager) getSystemService(WINDOW_SERVICE);
Point outSize = new Point();
wm.getDefaultDisplay().getSize(outSize); // 3.0         
전체 코드 는 다음 과 같 습 니 다:

package com.wuyudong.loadimage;
import android.os.Bundle;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.BitmapFactory.Options;
import android.graphics.Point;
import android.view.Menu;
import android.view.View;
import android.view.WindowManager;
import android.widget.ImageView;
public class MainActivity extends Activity {
private ImageView iv;
private int windowHeight;
private int windowWidth;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
iv = (ImageView) findViewById(R.id.iv);
//          
WindowManager wm = (WindowManager) getSystemService(WINDOW_SERVICE);
windowHeight = wm.getDefaultDisplay().getHeight();
windowWidth = wm.getDefaultDisplay().getWidth();
//Point outSize = new Point();
//wm.getDefaultDisplay().getSize(outSize); // 3.0         
//windowHeight = outSize.y;
//windowWidth = outSize.x;
}
public void load(View view) {
// Bitmap bitmap = BitmapFactory.decodeFile("/sdcard/a.jpg");
// iv.setImageBitmap(bitmap);
//        
BitmapFactory.Options opts = new Options();
//         ,              
opts.inJustDecodeBounds = true;
BitmapFactory.decodeFile("/sdcard/a.jpg", opts);
int imageHeight = opts.outHeight;
int imagewidth = opts.outWidth;
System.out.println("   :" + imagewidth);
System.out.println("   " + imageHeight);
//       
int scaleX = imagewidth / windowWidth;
int scaleY = imageHeight / windowHeight;
int scale = 1;
if (scaleX > scaleY & scaleY >= 1) {
scale = scaleX;
}
if (scaleY > scaleX & scaleX >= 1) {
scale = scaleY;
}
//    
opts.inJustDecodeBounds = false;
//   
opts.inSampleSize = scale;
Bitmap bitmap = BitmapFactory.decodeFile("/sdcard/a.jpg", opts);
iv.setImageBitmap(bitmap);
}
}
위 에서 말 한 것 은 소 편 이 소개 한 안 드 로 이 드 의 그림 을 메모리 에 불 러 오 는 인 스 턴 스 코드 입 니 다.여러분 에 게 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 면 메 시 지 를 남 겨 주세요.소 편 은 제때에 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기