我正在使用ViewPager
和PagerTitleStrip
来显示多个片段。
我想要的是在ViewPager中添加TextView
。此TextView应显示在每个片段的顶部,因此应作为一种模板。 TextView
应出现在PagerTitleStrip
和Fragments
之间。
MyLayout.xml
目前看起来像这样:
<android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/projectDetailsPager"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ProjectDetailsFragment" >
<android.support.v4.view.PagerTitleStrip
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top" />
</android.support.v4.view.ViewPager>
我没有成功的尝试是这样的:
<android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/projectDetailsPager"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ProjectDetailsFragment" >
<android.support.v4.view.PagerTitleStrip
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="DUMMY" />
</android.support.v4.view.ViewPager>
不幸的是TextView没有显示出来。知道为什么吗?