Remove the "trim" option for videos in non-MP4 format from the android Image Library
Source: Internet
Author: User
In jb2, video trimming is added. Currently, Google does not support video trimming in non-MP4 format by default. In the image library, the toast prompt is displayed, indicating that the video cannot be edited due to an error ". How to remove the "trim" option for videos in non-MP4 format Modify the updatemenuoperations () method in gallery2 \ SRC \ com \ Android \ gallery3d \ app \ photopage. Java: Private void updatemenuoperations (){ ... // M: If file is not MP4, disable trim
If (mcurrentphoto. getmimetype () = NULL |! Mcurrentphoto. getmimetype (). tolowercase (). Equals ("Video/MP4") {
supportedoperations & = ~ Mediaobject. support_trim;
}< br>
menuexecutor. updatemenuoperation (menu, supportedoperations);
mcurrentphoto. getpanoramasupport (mupdatepanoramamenuitemscallback);
}
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.