標籤:
在此調查中我要實現的是:點擊Pictures按鈕後,擷取手機內所有圖片,選擇某一個圖片,並顯示到ImageView中。
應用範圍: 圖片上傳時的圖片選擇 , 類似"瀏覽"。
效果:
所有的圖片都會列出來,包括目錄。
在Activity Action裡面有一個“ACTION_GET_CONTENT”字串常量,該常量讓使用者選擇特定類型的資料,並返回該資料的URI.我們利用該常量,然後設定類型為“image/*”,就可獲得android手機內的所有image。
main.xml :
[xhtml] view plaincopyprint?
- <?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"
- >
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/hello"
- />
- <Button
- android:id="@+id/b01"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- />
- <ImageView
- android:id="@+id/iv01"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- />
- </LinearLayout>
Lesson_01_Pic.java:
[java] view plaincopyprint?
- package com.yfz;
- import java.io.FileNotFoundException;
- import android.app.Activity;
- import android.content.ContentResolver;
- import android.content.Intent;
- import android.graphics.Bitmap;
- import android.graphics.BitmapFactory;
- import android.net.Uri;
- import android.os.Bundle;
- import android.util.Log;
- import android.view.View;
- import android.widget.Button;
- import android.widget.ImageView;
- public class Lesson_01_Pic extends Activity {
- /** Called when the activity is first created. */
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
-
- Button button = (Button)findViewById(R.id.b01);
- button.setText("選擇圖片");
- button.setOnClickListener(new Button.OnClickListener(){
- @Override
- public void onClick(View v) {
- Intent intent = new Intent();
- /* 開啟Pictures畫面Type設定為image */
- intent.setType("image/*");
- /* 使用Intent.ACTION_GET_CONTENT這個Action */
- intent.setAction(Intent.ACTION_GET_CONTENT);
- /* 取得相片後返回本畫面 */
- startActivityForResult(intent, 1);
- }
-
- });
- }
-
- @Override
- protected void onActivityResult(int requestCode, int resultCode, Intent data) {
- if (resultCode == RESULT_OK) {
- Uri uri = data.getData();
- Log.e("uri", uri.toString());
- ContentResolver cr = this.getContentResolver();
- try {
- Bitmap bitmap = BitmapFactory.decodeStream(cr.openInputStream(uri));
- ImageView imageView = (ImageView) findViewById(R.id.iv01);
- /* 將Bitmap設定到ImageView */
- imageView.setImageBitmap(bitmap);
- } catch (FileNotFoundException e) {
- Log.e("Exception", e.getMessage(),e);
- }
- }
- super.onActivityResult(requestCode, resultCode, data);
- }
- }
好了,就將這麼多。
本地圖片選擇(開啟媒體庫,選擇圖片)