I have to upload a video from gallery to VideoView. But i want to get the size of the video in bytes. Please help me !! This is my code:
 protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Intent intent=new Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
                    intent.setType("video/*");
                    startActivityForResult(intent,1);
}
            @Override
            protected void onActivityResult(int requestCode, int resultCode, Intent data) {
                if(requestCode==1&&resultCode== Activity.RESULT_OK){
                    try{
                        String path=data.getData().toString();
                        videoView.setVideoPath(path);
                        videoView.requestFocus();
                        videoView.start();
                       }
                    catch (Exception ex){
                        ex.printStackTrace();
                    }
                }
            }
				
                        
You just need to create a new File object such as...
this gives the size of the file, not the image