1

How can i get the pager view as a full screen in android? Please help.I already have a pager but it is not extending to full size.Its width is being covered, but not the height.

CoderDecoder
  • 445
  • 4
  • 18

2 Answers2

1

Add your manifest on your activity which you want to show full screen

<activity
    android:name="com.your_package.YourActivity"
    android:theme="@android:style/Theme.NoTitleBar" >
</activity>
Batuhan Coşkun
  • 2,961
  • 2
  • 31
  • 48
0

Are you using match_parent for layout_height and layout_width?

<android.support.v4.view.ViewPager
 android:id="@+id/viewpager"
 android:layout_width="match_parent"
 android:layout_height="match_parent"/>
Shashika
  • 1,151
  • 1
  • 9
  • 21