Android:在ViewPager中添加视图

时间:2013-12-20 08:39:36

标签: android android-layout android-viewpager

我正在使用ViewPagerPagerTitleStrip来显示多个片段。

我想要的是在ViewPager中添加TextView 。此TextView应显示在每个片段的顶部,因此应作为一种模板。 TextView应出现在PagerTitleStripFragments之间。

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没有显示出来。知道为什么吗?

0 个答案:

没有答案