How to display video in VideoView in the center of the screen?
I am creating ViewPager with two VideoViews . On sliding pages, video on current page start playing. One problem: how to display video in VideoView in the center of the screen ? Here is my code, MainActivity.java: public class MainActivity extends Activity{ private class MyViewPagerAdapter extends PagerAdapter implements ViewPager.OnPageChangeListener { private Vector<View> pages; private ViewGroup myContainer; private int currentPageId; private boolean flag; public MyViewPagerAdapter(Context context, Vector<View> pages) { this.pages=pages; } @Override public int getCount() { return pages.size