我想有一個視圖 在哪裏首先會有adview在片段和最後與botton android pagertabstrip將存在,但不知何故pagertabstip採取整頁。 我的代碼如下android分頁器標籤帶在底部採取整個片段
<RelativeLayout 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="match_parent"
android:background="@color/black" >
<LinearLayout
android:id="@+id/adview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/black"
android:orientation="vertical" >
</LinearLayout>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/tabs"
android:layout_below="@+id/adview"
tools:context=".MainActivity" />
<com.astuetz.PagerSlidingTabStrip
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="48dip"
android:layout_alignParentBottom="true"
android:layout_below="@+id/adview"
android:background="@color/black" >
</com.astuetz.PagerSlidingTabStrip>
</RelativeLayout>
如何使這項工作,與標籤欄底部和尋呼機查看頂部,
喜它是在相對佈局,因爲我想的AdView浮在片段 – 2014-09-26 12:30:29
我念錯了你的問題,我編輯我的答案。現在應該是正確的。 – Budius 2014-09-26 12:37:04
thankx很多,它的工作像一個魔術,似乎我不明白如何相對查看工作:( – 2014-09-26 12:40:04