[当用户从图库中上传图像并将其显示在textView中时如何获取图像名称?

来源:爱站网时间:2021-09-24编辑:网友分享
我正在尝试检索用户在图库中选择的图像的实际图像名称(例如IMG_2020)。我尝试使用getAbsolutePath()和getName(),但是这2种方法显示类似“ image $ ...

问题描述


  • 我正在尝试检索用户在图库中选择的图像的实际图像名称(例如IMG_2020)。
  • [我尝试过使用getAbsolutePath()和getName(),但是这2种方法显示的是“ image $ 3A75”,而不是实际的图像文件名。

[除此之外,我还尝试使用某种光标方法,但我并不真正知道它是如何工作的,但是它仍然不起作用,或者可能是因为我不知道如何使用它。

请帮助吗?

这是我的onActivityResult()方法

  • fileName是我要放置我的imageName的textView
  • 尚未使用bitMap对象,因为我正在在线学习教程,并且正在中途复制,我认为它将在本教程的后面使用

public class createCharity extends AppCompatActivity {

    private static final int PICK_IMAGE_REQUEST = 1;
    Button uploadButton;
    Button createCharityButton;
    TextView charityTitle;
    TextView fileName;
    TextView charityDescription;
    Uri charityImage;
    private StorageReference mStorageRef;
    private DatabaseReference mDatabaseRef;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_create_charity);

        uploadButton = findViewById(R.id.uploadButton);
        charityTitle = findViewById(R.id.charityTitle);
        fileName = findViewById(R.id.fileName);
        charityDescription = findViewById(R.id.charityDescription);
        createCharityButton = findViewById(R.id.createCharityButton);

        mStorageRef = FirebaseStorage.getInstance().getReference("charityUploads");
        mDatabaseRef = FirebaseDatabase.getInstance().getReference("charityUploads");

        uploadButton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                openFileChooser();
            }
        });

    }

    private void openFileChooser() {
        Intent intent = new Intent();
        intent.setType("image/*");
        intent.setAction(Intent.ACTION_GET_CONTENT);
        startActivityForResult(intent, PICK_IMAGE_REQUEST);
        System.out.println("----------------------c1");
    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
        super.onActivityResult(requestCode, resultCode, data);

        if (requestCode == PICK_IMAGE_REQUEST && resultCode == RESULT_OK && data != null && data.getData() != null) {
            charityImage = data.getData();
            try {
                Bitmap bitmap = MediaStore.Images.Media.getBitmap(getContentResolver(), charityImage);

                File file = new File(String.valueOf(charityImage));
                System.out.println("Image name: " + file.getName());

                fileName.setText(file.getName());

            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }
}

思路:


类似:

                String projection [] = {

                          MediaStore.Images.Media.DATA
                        , MediaStore.Images.Media.DISPLAY_NAME
                        , MediaStore.Images.Media.SIZE};
                Cursor cursor = getContentResolver().query(data.getData(), projection, null, null, null);

                if ( cursor==null)
                {
                    Toast.makeText(context, "cursor==null\n\ncould not query content resolver for\n\n" + path, Toast.LENGTH_LONG).show();

                    return;
                }

                cursor.moveToFirst();
                String data = cursor.getString(0);
                String displayName = cursor.getString(1);
                String size = cursor.getString(2);

                Toast.makeText(context, "getContentResolver().openInputStream() ok\n\n" + path
                            + "\n\nDISPLAY_NAME: " + displayName
                            + "\nDATA: " + data
                            + "\nSIZE: " + size
                            , Toast.LENGTH_LONG).show();
                cursor.close();             

数据在Android Q +上不可用。

上一篇:片段未显示在家庭活动中

下一篇:无法从静态上下文错误中引用

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载