当我将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>