はいできます。 はここにあなたがオレンジの領域は ViewPagerIndicatorで使用されている のように変更されませんあなたの静的なコンテンツを配置青色領域では、それ
レイアウト例
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<!-- Static content -->
<LinearLayout
android:id="@+id/ll_bottom"
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_alignParentBottom="true"
android:background="@color/holo_blue_light"
android:orientation="vertical" />
<!-- ViewPager Indicator -->
<com.viewpagerindicator.LinePageIndicator
android:id="@+id/view_pager_indicator"
android:layout_width="fill_parent"
android:layout_height="20dp"
android:layout_above="@id/ll_bottom"
android:background="@color/holo_orange_light"
app:lineWidth="10dp"
app:selectedColor="#fff"
app:strokeWidth="10dp"
app:unselectedColor="#888888" />
<!-- ViewPager containing fragments with different views -->
<android.support.v4.view.ViewPager
android:id="@+id/view_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/view_pager_indicator"
android:layout_alignParentTop="true"
android:background="@color/holo_red_light" />
</RelativeLayout>
を行う方法の例であります最後に赤い領域はViewPagerのものです。この領域はスワイプ可能です。
数値表示と三角表示の表示 –
は、相対レイアウトの最後の子である** **に配置する必要があります –