]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/views/WrapVerticalContentViewPager.java
Migrate to AndroidX from the Android Support Library. https://redmine.stoutner.com...
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / views / WrapVerticalContentViewPager.java
1 /*
2  * Copyright © 2017,2019 Soren Stoutner <soren@stoutner.com>.
3  *
4  * This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
5  *
6  * Privacy Browser is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * Privacy Browser is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Privacy Browser.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 package com.stoutner.privacybrowser.views;
21
22 import android.content.Context;
23 import android.util.AttributeSet;
24 import android.view.View;
25
26 import androidx.viewpager.widget.ViewPager;
27
28 public class WrapVerticalContentViewPager extends ViewPager {
29     // Setup the default constructors.
30     public WrapVerticalContentViewPager(Context context) {
31         super(context);
32     }
33
34     public WrapVerticalContentViewPager(Context context, AttributeSet attrs) {
35         super(context, attrs);
36     }
37
38     @Override
39     protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
40         // Perform an initial `super.onMeasure`, which populates `getChildCount`.
41         super.onMeasure(widthMeasureSpec, heightMeasureSpec);
42
43         // Initialize `maximumHeight`.
44         int maximumHeight = 0;
45
46         // Find the maximum height of each of the child views.
47         for (int i = 0; i < getChildCount(); i++) {
48             View childView = getChildAt(i);
49
50             // Measure the child view height with no constraints.
51             childView.measure(widthMeasureSpec, MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
52
53             // Store the child's height if it is larger than `maximumHeight`.
54             if (childView.getMeasuredHeight() > maximumHeight) {
55                 maximumHeight = childView.getMeasuredHeight();
56             }
57         }
58
59         // Perform a final `super.onMeasure` to set the `maximumHeight`.
60         super.onMeasure(widthMeasureSpec, MeasureSpec.makeMeasureSpec(maximumHeight, MeasureSpec.EXACTLY));
61     }
62 }