我想要一個片段從右側出現,每當我得到一個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的地方。
yes..Maybe我不clear.I不想使用SlidingMenu API我有創建一個具有特定用戶界面的片段,我希望它出現像slidingmenu(我的片段實現不slidingMenu)。它是關於添加一個片段的佈局,但我似乎無法找到如何正確添加它,這就是爲什麼我詢問 – Libathos
如果你想出現像,爲什麼你不使用SlidingMenu? – Marckaraujo
,因爲這只是一個菜單我有一些textViews和其他東西的片段,不需要切換到SlidingMenu我只需要如何將其添加在我的layout.IF你可以幫助我,我會很感激 – Libathos