2015-03-08 57 views
-1

我已經實現了CirclePageIndicator並且很好。但我想把它放在ActionBar上。如何把CirclePageIndicator放在ActionBar上

這是應用程序的屏幕截圖。

Screenshot actual app

而這正是我想要把CirclePageIndicator圖片。 Screenshot desired app

我不知道如何在res/menu/main_activity_actions.xml中添加一個Item。

感謝

回答

0

你需要把物品放在一起的RalativeLayout這樣的:

<?xml version="1.0" encoding="utf-8"?> 
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

    <RelativeLayout 
     android:id="@+id/img_slideshow_layout" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" > 

     <RelativeLayout 
      android:id="@+id/banner" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:orientation="vertical"> 

     <android.support.v4.view.ViewPager 
      android:id="@+id/vista_banner" 
      android:layout_width="fill_parent" 
      android:layout_height="160dp"/> 

     <com.viewpagerindicator.CirclePageIndicator 
      android:id="@+id/indicator" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:layout_alignParentBottom="true" 
      android:layout_alignParentLeft="true" 
      android:layout_alignParentStart="true"/> 

     </RelativeLayout> 

     <android.support.v4.view.ViewPager 
      android:id="@+id/vista_especials" 
      android:layout_width="fill_parent" 
      android:layout_height="30dp" 
      android:layout_below="@+id/banner"/> 

    </RelativeLayout> 

</ScrollView>