2
我使用「android.support.v4.view.ViewPager」和「android.support.v4.view.PagerTitleStrip」的swipe創建了一個選項卡視圖。現在我需要在標題條頂部顯示一個Button或TextView。即使我添加了標題條上方的textview,但沒有顯示出來。我的XML文件如下。如何在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/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:background="@drawable/home_background11" >
<TextView
android:id="@+id/label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello"/>
<android.support.v4.view.PagerTitleStrip
android:id="@+id/pager_title_strip"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"
android:background="#33b5e5"
android:paddingBottom="4dp"
android:paddingTop="4dp"
android:textColor="#fff" />
</android.support.v4.view.ViewPager>
我需要爲所有頁面保留一些具有通用功能的按鈕。 – Vignesh
我會嘗試我們的代碼,謝謝.... – Vignesh