目前我正在开发一个需要在我的活动中使用浏览按钮的应用程序。当我按下浏览按钮时,我应该能够浏览我的 SD 卡以及手机内存中的图像文件。在点击图像文件时,它应该被选中并且图像文件的路径(即,所选图像文件所在的位置)应该显示在文本视图的活动中。所选图像也应显示在图像视图中。这个怎么做?有人可以帮我吗..
问问题
19088 次
2 回答
33
主要的.xml
<?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">
<ImageView
android:id="@+id/imgView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"></ImageView>
<Button
android:id="@+id/buttonLoadPicture"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0"
android:text="Load Picture"
android:layout_gravity="center"></Button>
</LinearLayout>
MainActivity.java
package com.example.yourpackage;
import android.app.Activity;
import android.content.Intent;
import android.database.Cursor;
import android.graphics.BitmapFactory;
import android.net.Uri;
import android.os.Bundle;
import android.provider.MediaStore;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
public class MainActivity extends Activity {
private static int RESULT_LOAD_IMAGE = 1;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button buttonLoadImage = (Button) findViewById(R.id.buttonLoadPicture);
buttonLoadImage.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
Intent i = new Intent(
Intent.ACTION_PICK,
android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(i, RESULT_LOAD_IMAGE);
}
});
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == RESULT_LOAD_IMAGE && resultCode == RESULT_OK && null != data) {
Uri selectedImage = data.getData();
String[] filePathColumn = { MediaStore.Images.Media.DATA };
Cursor cursor = getContentResolver().query(selectedImage,
filePathColumn, null, null, null);
cursor.moveToFirst();
int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
String picturePath = cursor.getString(columnIndex);
cursor.close();
ImageView imageView = (ImageView) findViewById(R.id.imgView);
imageView.setImageBitmap(BitmapFactory.decodeFile(picturePath));
}
}
}
在清单中添加权限
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
于 2014-01-12T06:48:59.877 回答
1
MediaStore.Images.Media.DATA
已弃用。所以@Looking_Forward 兄弟的代码不适用于 android 10+。但只需进行简单的修改,我就使用了@Looking_Forward 兄弟的代码。流程如下:
行后Uri selectedImage = data.getData();
删除所有代码并使用Glide.with(this).load(selectedImage).into(imageView)
(这是 Glide 库)。而且使用 contentProvider 也容易得多(这是@Looking_Forward bro 显示的)。
于 2020-10-04T19:08:37.103 回答