Как получить ширину видео, высоту на Android в режиме просмотра видео - PullRequest
0 голосов
/ 08 января 2019

Мне не нужна фактическая высота видео ширины. Мне нужна ширина высота в виде поверхности видео андроид

final VideoView video_frame_layout = (VideoView) findViewById(R.id.video_loader);
Log.i("PANGA", "Layout width : "+ video_frame_layout.getWidth());
Log.i("PANGA", "Layout width : "+ video_frame_layout.getHeight());

video_frame_layout.post(new Runnable()
{
    @Override
    public void run()
    {
        Log.i("TEST", "Layout width : "+ video_frame_layout.getWidth());
        Log.i("TEST", "Layout width : "+ video_frame_layout.getHeight());
    }
});
...