2014-06-13 117 views
0

在Android中我想使滑動菜單像THIS現在我想使這個滑動菜單相同,但菜單按鈕必須在底部。和菜單從底部到頂部打開如何實現這一目標?android滑動菜單從底部到頂部使用片段

I have tried thisThis also但我沒有得到有用的輸出,我想同第一個屏幕截圖,但菜單底部,向上擴大到一定的高度(菜單不能覆蓋全高)

我想用片段它。

我已經試過這also

我希望它像THIS

+0

請注意,標籤不是關鍵字。填充標籤列表中充滿您問題中相同的單詞(菜單,幻燈片,頂部,底部)將無助於對其進行分類。請務必閱讀選擇標籤時出現的說明! – Charles

回答

4

我的鏈接後作爲一個答案:https://github.com/umano/AndroidSlidingUpPanel

庫將幫助你實現你所需要的。

Umano Android應用程序的2.2版本爲當前正在播放的文章提供了一個性感滑動可拖動面板。這種類型的面板也是Google音樂應用和Rdio應用中使用的常見模式。這是該組件的開源實現,您可以在應用程序中免費使用它。 Umano團隊開源。

<com.sothree.slidinguppaneldemo.SlidingUpPanelLayout 
    android:id="@+id/sliding_layout" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" > 

    <TextView 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:gravity="center" 
     android:text="Main Content" 
     android:textSize="16sp" /> 

    <TextView 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:gravity="center|top" 
     android:text="The Awesome Sliding Up Panel" 
     android:textSize="16sp" /> 
</com.sothree.slidinguppaneldemo.SlidingUpPanelLayout>