在自己應用中,從系統圖庫中取圖片,然後截取其中一部分,再返回到自己應用中。這是很多有關圖片的應用需要的功能。
寫了一個示例,上來就是個大按鈕,連布局都不要了。最終,用選取圖片中的一部分作為按鈕的背景。
這裡需要注意幾點:
- 從圖庫中選取出來保存的圖片剪輯,需要保存在sd卡目錄,不能保存在應用自己的在內存的目錄,因為是系統圖庫來保存這個文件,它沒有訪問你應用的權限;
- intent.putExtra("crop", "true")才能出剪輯的小方框,不然沒有剪輯功能,只能選取圖片;
- intent.putExtra("aspectX", 1),是剪輯方框的比例,可用於強制圖片的長寬比。
- package com.easymorse.gallery;
-
- import java.io.File;
-
- import Android.app.Activity;
- import android.content.Intent;
- import android.graphics.drawable.Drawable;
- import android.net.Uri;
- import android.os.Bundle;
- import android.view.View;
- import android.view.View.OnClickListener;
- import android.widget.Button;
-
- public class GalleryActivity extends Activity {
-
- private static int SELECT_PICTURE;
-
- private File tempFile;
-
- Button button;
-
- /** Called when the activity is first created. */
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- this.tempFile=new File("/sdcard/a.jpg");
- button = new Button(this);
- button.setText("獲取圖片");
- button.setOnClickListener(new OnClickListener() {
-
- @Override
- public void onClick(View v) {
- Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
- intent.setType("image/*");
- intent.putExtra("crop", "true");
-
- // intent.putExtra("aspectX", 1);
- // intent.putExtra("aspectY", 2);
-
- intent.putExtra("output", Uri.fromFile(tempFile));
- intent.putExtra("outputFormat", "JPEG");
-
- startActivityForResult(Intent.createChooser(intent, "選擇圖片"),
- SELECT_PICTURE);
- }
- });
- setContentView(button);
- }
-
- @Override
- protected void onActivityResult(int requestCode, int resultCode, Intent data) {
- if (resultCode == RESULT_OK) {
- if (requestCode == SELECT_PICTURE) {
- button.setBackgroundDrawable(Drawable.createFromPath(tempFile
- .getAbsolutePath()));
- }
- }
- }
-
- }