Android ViewPager with WRAPCONTENT height

Updated 26 October 2021

Save

Recently, while working with the ViewPager, I found out that sometimes the Android ViewPager with WRAPCONTENT height flag is not visible. The reason for this is perhaps that the wrap_content flag needed height from the child view and the child view height is still not known.

The best way to check this is to fix the height to some hardcoded value say “200dp” and check if the view is visible.

Now if the view is visible and it gets your work done you don’t need to follow this blog anymore as you have achieved your purpose. But, if you still want to have a viewpager which has height set by the wrap_content flag in your XML file, then you should continue reading.

I believe that the purpose of this blog is very clear to you by now. So I will just come to the approach I have used.

APPROACH

  1. Create A custom View class that extends the View Pager class.(say WrapContentViewPager).
  2. Create default constructors for your class as in the View Pager class, so that you can directly call super with these and create a proper view for your custom view and use it in xml as easily as you would use the ViewPager tag for creating the viewpager view.
  3.  Create a Function that will add a simple page Change listener to your custom view and then call this function in the default constructors you just created in above step.
  4.  Override the onMeasure Method of the ViewPager class in your custom View class and get the child’s measured height and then set in the height params and call the super function.

CODE

WrapContentViewPager class :-

Use of this class in your XML File:-

The Above code will just change the height of the Viepager as per the current child. but the main power of the viewPager is to prepare the view for the previous and next item as well so if you want you can get this also and this again is nothing but iterating the viewPager as per the child in the memory so we just need to have a for loop in onMeasure method of the viewPager and iterate each child View.

CODE

EnhancedWrapContentViewPager class:-

Use of this class in your XML File:-

That’s it,  you can run this code and check it yourself.

author
. . .

Leave a Comment

Your email address will not be published. Required fields are marked*


27 comments

  • abhay paul
    • Aman Gupta (Moderator)
  • Divya Gupta
    • anchit (Moderator)
  • Vora
    • anchit (Moderator)
  • Juan
    • anchit (Moderator)
  • S Paran
    • anchit (Moderator)
  • Alex
    • anchit (Moderator)
  • sonph
    • anchit (Moderator)
    • Marama
  • Umang Madani
    • anchit (Moderator)
  • Yongho
    • anchit (Moderator)
  • Kavi
    • anchit (Moderator)
  • Radhe
    • anchit (Moderator)
  • Radhey Gor
    • anchit (Moderator)
  • Vinod
    • anchit (Moderator)
  • Start a Project


      Message Sent!

      If you have more details or questions, you can reply to the received confirmation email.

      Back to Home