I am new to Android.
I'm trying to build an Image player.
I ask the user for an image they want to open.
But I don't know the way how to ask the user to provide that URL
.
Please Help me....
I am new to Android.
I'm trying to build an Image player.
I ask the user for an image they want to open.
But I don't know the way how to ask the user to provide that URL
.
Please Help me....
Intent intent = new Intent(Intent.ACTION_PICK);
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(intent, REQUEST_CODE_LOAD_IMAGE);