【Android】本地圖片選擇(開啟媒體庫,選擇圖片)

來源:互聯網
上載者:User

在此調查中我要實現的是:點擊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 />} 

 

好了,就將這麼多。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.