ViewPager未在ListView中显示为标题

时间:2018-06-19 16:55:04

标签: java android listview android-viewpager

当我将ViewPager设置为ListView的标头时,它消失了。显示了其他元素,例如TextView,它们处于相同的布局,但没有显示ViewPager。这怎么可能以及如何解决?

这是我进行膨胀和设置为标题的方式:

ListView listView = findViewById(R.id.ListView);
View header = getLayoutInflater().inflate(R.layout.header, null);

ViewPager viewPager = header.findViewById(R.id.viewpager);
SchoolBagSlideAdapter schoolBagSlideAdapter = new SchoolBagSlideAdapter(this);
viewPager.setAdapter(schoolBagSlideAdapter);

listView.addHeaderView(header);
listView.setAdapter(new ArrayAdapter(this, 0));

这是标题布局的XML:

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <!-- other elements that are shown -->

    <vitek.readier.AutoSize_ViewPager
        android:id="@+id/viewpager"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginEnd="8dp"
        android:layout_marginLeft="8dp"
        android:layout_marginRight="8dp"
        android:layout_marginStart="8dp"
        android:layout_marginTop="8dp"
        />
</LinearLayout>

0 个答案:

没有答案