2013-01-17 90 views
-1

我想要一個片段從右側出現,每當我得到一個onListItemClick事件,就像滑動菜單一樣。假設我已經實現了這個片段;我怎樣才能讓它出現?我似乎無法弄清楚。感謝您的時間。我怎樣才能動態添加一個片段

編輯: 這是一個ViewGroup這裏我想補充的片段:

<TabHost 
    android:id="@android:id/tabhost" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" > 

    <LinearLayout 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:orientation="vertical" > 

     <TabWidget 
      android:id="@android:id/tabs" 
      android:layout_width="fill_parent" 
      android:layout_height="match_parent" 
      android:orientation="horizontal" /> 


      <FrameLayout 
       android:id="@android:id/tabcontent" 
       android:layout_width="0dp" 
       android:layout_height="0dp" /> 

      <android.support.v4.view.ViewPager 
       android:id="@+id/tabviewpager" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:layout_marginBottom="16dp" 
       android:layout_marginLeft="16dp" 
       android:layout_marginRight="16dp" 
       android:layout_marginTop="16dp" > 

      </android.support.v4.view.ViewPager> 
    </LinearLayout> 

</TabHost> 

的TabViewPager是我加我的片段,當活動被實例化,ans是我需要動態添加我的新Fragment的地方。

回答

0

這是庫:

https://github.com/jfeinstein10/SlidingMenu

您可以從許多方面推動SlidingMenu,我想你需要先和背部儘量在這裏,當你在一個錯誤卡住了,然後I'll是很高興幫助你。

+0

yes..Maybe我不clear.I不想使用SlidingMenu API我有創建一個具有特定用戶界面的片段,我希望它出現像slidingmenu(我的片段實現不slidingMenu)。它是關於添加一個片段的佈局,但我似乎無法找到如何正確添加它,這就是爲什麼我詢問 – Libathos

+0

如果你想出現像,爲什麼你不使用SlidingMenu? – Marckaraujo

+0

,因爲這只是一個菜單我有一些textViews和其他東西的片段,不需要切換到SlidingMenu我只需要如何將其添加在我的layout.IF你可以幫助我,我會很感激 – Libathos