如何要求用户提供图像文件路径?

how to require user give an image filepath?

我是 Android 的新手。

我正在尝试构建图像播放器。
我向用户询问他们想要打开的图像。
但我不知道如何要求用户提供 URL.

请帮帮我....

Intent intent = new Intent(Intent.ACTION_PICK);
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(intent, REQUEST_CODE_LOAD_IMAGE);