2013-09-24 59 views
2

我正在使用此LIBRARY作爲我的滑動面板。每一件事情都用簡單的佈局工作正常。 現在我的問題是,如何在該面板中插入一個尋呼機標題條,以便我可以使其View View pager與多個片段一起工作。向上滑動面板以查看尋呼機標題條

first image with panel and pager title strip

slide up to view panel

第一張圖片是在底部 第二個冠軍頭銜條向上滑動滑動片段

+1

這裏是很好的教程http://androidsolution4u.blogspot.in/2013/04/tabnvigation-like-google-play-store-app.html –

+0

確定此鏈接正在工作..但不完全是我想要的!謝謝 –

回答

3

從以前的帖子,我假設你正在使用這個庫(https://github.com/umano/AndroidSlidingUpPanel )。

這個圖書館要求你有2個孩子的意見。第一個是主佈局,第二個是實際的滑動視圖。現在,您的滑動視圖只是一個佔位符,因此您可以在其中放置任何您想要的內容。如果你想添加一個ViewPager,這是你如何做到的。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" > 

    <SlidingUpPanelLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" > 

     <!-- Top Panel --> 
     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" > 
     </LinearLayout> 

     <!-- Sliding Panel --> 
     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:orientation="vertical" > 

      <android.support.v4.view.ViewPager 
       android:layout_width="match_parent" 
       android:layout_height="match_parent" > 
      </android.support.v4.view.ViewPager> 
     </LinearLayout> 
    </SlidingUpPanelLayout> 

</RelativeLayout> 

我們這裏有什麼是我們的活動(RelativeLayout的)主要佈局,我們正在加入SlidingPanelLayout它。在這個Layout中,我們將主佈局定義爲LinearLayout(頂部面板)和第二個LinearLayout(滑動面板),它是實際的滑動視圖。現在,我們需要做的就是添加一個ViewPager到這個滑動面板。

+0

你可以發佈一些屏幕截圖嗎? –

+0

對不起,我無法上傳屏幕截圖,因爲該應用尚未發佈。但它實際上與Google Play音樂應用程序完全相同。您有主視圖可以顯示您的專輯列表,當您滑動面板時,您基本上可以訪問顯示當前播放列表的ViewPager。 – Henrique

+0

我可以在thjat上放置手勢,以便從左向右滑動Google Play音樂(更改當前播放的音樂)? –

相關問題