videoV = (SurfaceView) findViewById(R.id.SurfaceView1);
sh = videoV.getHolder();
File path = Environment.getExternalStorageDirectory();
File file = new File(path, “sample2.mp4”);
sh.addCallback(this);
mp = new MediaPlayer();
mp.setDataSource(file.getAbsolutePath());
mp.setDisplay(sh);
mp.prepare();
mp.start();
code ผมรันคามนี้ครับ แล้วทีนี้ มีแต่เสียงออกมา แ่ใน SurfaceView ไม่มีภาพครับ
มีใครพอรู้สาเหตุรึเปล่าครับ