#// Get the video view VideoView videoView = findViewById(R.id.video_view); #// Set the width and height of the video view to be larger ViewGroup.LayoutParams params = videoView.getLayoutParams(); params.width *= 2; params.height *= 2; videoView.setLayoutParams(params);
function add(a: number, b: number): number { return a + b; }