ViewPager 是開發(fā)中經(jīng)常用到的一個(gè)控件,但高度卻不能根據(jù)內(nèi)容自適應(yīng),設(shè)置android:layout_height="wrap_content"
之后還是占滿全屏〗鹗瘢看的網(wǎng)上的解決辦法主要有下面幾種:
- 設(shè)置固定高度
android:layout_height="100dp"
。在一定情況下這種方法是可以的的畴,但在屏幕適配方面可能會(huì)有問題渊抄。 - 在LinearLayout布局中使用weight改變ViewPager的高度。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_weight="1"
android:layout_height="0dp" />
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="123456" />
</LinearLayout>
這種方法也可以調(diào)整ViewPager的高度苗傅,但其高度取決于其他控件抒线,在一些情況下無法滿足需求。
- 動(dòng)態(tài)計(jì)算高度渣慕,通過LayoutParmas改變ViewPager的高度,或者在onMeasure中返回childView的高度抱慌。網(wǎng)上大部分的解決方法是通過下面的方法逊桦。
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int height = 0;
//下面遍歷所有child的高度
for (int i = 0; i < getChildCount(); i++) {
View child = getChildAt(i);
child.measure(widthMeasureSpec,
MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
int h = child.getMeasuredHeight();
if (h > height) //采用最大的view的高度。
height = h;
}
heightMeasureSpec = MeasureSpec.makeMeasureSpec(height,
MeasureSpec.EXACTLY);
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
這種方式是通過計(jì)算ViewPager已經(jīng)加載的頁面中高度最大的值設(shè)置為ViewPager的高度抑进,這種方法在ViewPager的每個(gè)頁面的高度都相等的情況下是非常實(shí)用的强经,能很好的解決ViewPager高度自適應(yīng)問題,但如果需求是ViewPager的每個(gè)頁面的高度都不太一致寺渗,用這種方式就會(huì)有些問題匿情,從頁面高度大的滑動(dòng)到頁面高度小的時(shí),ViewPager的高度會(huì)不變信殊,不能做到實(shí)時(shí)根據(jù)內(nèi)容的大小進(jìn)行調(diào)整炬称。
- 我對(duì)上面的方法進(jìn)行了一些調(diào)整,能做到ViewPager的高度實(shí)時(shí)涡拘。
public class ContentViewPager extends ViewPager {
public ContentViewPager(Context context) {
super(context);
}
public ContentViewPager(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int index = getCurrentItem();
int height = 0;
View v = ((Fragment) getAdapter().instantiateItem(this, index)).getView();
if (v != null) {
v.measure(widthMeasureSpec, MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
height = v.getMeasuredHeight();
}
heightMeasureSpec = MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY);
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
}
通過實(shí)時(shí)獲取ViewPager當(dāng)前顯示頁面的高度來調(diào)整ViewPager的高度玲躯,通過這種方式可是實(shí)現(xiàn)ViewPager的高度實(shí)時(shí)根據(jù)頁面的內(nèi)容來調(diào)整,但這種方式也有點(diǎn)問題,就是在ViewPager切換時(shí)能明顯看到頁面高度的變化跷车,暫時(shí)沒找到好的方式來解決這個(gè)問題棘利。
歡迎大家使用,如果有更好的方式也希望能分享出來朽缴。