Answer the question
In order to leave comments, you need to log in
How to make a limit on the size of the file selected with Intents.ACTION_PICK?
I send a request to select a video file, I need to limit the size of the video and its duration, how can I do this? Maybe in putExtra there are constants for this?
Intent intent = new Intent(Intent.ACTION_PICK);
intent.putExtra("size",10);
intent.setType("video/*");
startActivityForResult(intent, REQUEST_CODE_ADD_VIDEO);
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question