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