我在一個項目中單獨使用了滑動菜單,並且單獨使用了選項卡,但是我無法將它們合併到一個項目中。是否有人遇到過這個問題? 在此先感謝如何在android中的標籤頁上使用滑動菜單?
0
A
回答
0
您可以滑動菜單使用標籤。你應該把滑動菜單的第二個孩子中有選項卡的佈局。
<android.support.v4.widget.SlidingPaneLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/sliding_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<RelativeLayout
android:id="@+id/drawer_relative"
android:layout_width="280dp"
android:layout_height="match_parent"
android:layout_gravity="left" >
<FrameLayout
android:id="@+id/list_fragment_id"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</FrameLayout>
</RelativeLayout>
<android.support.v4.app.FragmentTabHost
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="0" />
<FrameLayout
android:id="@+id/realtabcontent"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<TabWidget
android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
android:orientation="horizontal"
android:showDividers="none" />
</LinearLayout>
</android.support.v4.app.FragmentTabHost>
0
相關問題
- 1. Android如何使圖標手柄上的ListView滑動菜單
- 2. 使用jfeinstein10的滑動菜單,如何創建滑動菜單
- 3. 使用滑動菜單庫滑動到全屏android的滑動菜單
- 4. Android的執行在滑動標籤中滑動標籤
- 5. 如何在同一個應用程序中顯示滑塊菜單和標籤欄菜單(頁腳菜單)?
- 6. android滑動菜單
- 7. Android - 如何使用Recyclerview在TabLayout中滑動標籤
- 8. 滑動菜單在Android
- 9. 滑動菜單在Android
- 10. 如何創建動畫滑動窗口/標籤菜單?
- 11. 滑動菜單的鼠標懸停在頁面上
- 12. 如何在菜單上使用jQuery創建滑動動畫?
- 13. Android:上/下動畫滑動菜單
- 14. 上鼠標滑動菜單上
- 15. 左右滑動的Android滑動菜單
- 16. 如何使swipeEnabled爲false離子菜單爲false,但在菜單中的滑動條上啓用滑動
- 17. 在android中的滑動菜單
- 18. 在Android中的高級滑動菜單
- 19. 鼠標上的jQuery滑動菜單
- 20. Android - 帶子菜單的滑動菜單
- 21. 使用SimonVT的android-menudrawer在活動中添加滑動菜單
- 22. 如何使滑動下拉菜單向上滑動?
- 23. Android動態滑動菜單
- 24. 如何使用滑動菜單
- 25. Android滑動,使用ViewPager沒有標籤
- 26. Android:滑動菜單僅滑動內容
- 27. 如何在android/eclipse上設置Jfeinstein10滑動菜單
- 28. Android:來自標籤菜單的活動
- 29. 添加滑動的頁面與在Android中的標籤刷卡
- 30. Facebook的滑動菜單 - 在android中向右滑動?
你的意思是作爲一個fragmentActivity只要使用這個驚人的課嗎? – Amira
具有Sliding菜單的片段活動可以具有包含選項卡的片段。 –
我也不工作 – Amira