安卓導航抽屜故障
回答
這是NavigationDrawer我用:
首先,我設置了點擊監聽到ListView的NavigationDrawer
mDrawerList.setOnItemClickListener(new DrawerItemClickListener());
DrawerItemClickListener其內部的自定義類
private class DrawerItemClickListener implements
ListView.OnItemClickListener {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
selectItem(position);
}
}
這個電話到selectItem(int position)
private void selectItem(int position) {
FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
switch (position) {
case 0:
ft.replace(R.id.content_frame, new FirstFragment());
setTitle("First");
break;
case 1:
ft.replace(R.id.content_frame, new SecondFragment());
setTitle("Second");
break;
case 2:
ft.replace(R.id.content_frame, new ThirdFragment());
setTitle("Third");
break;
}
ft.commit();
mDrawerList.setItemChecked(position, true);
mDrawerLayout.closeDrawer(mRelativeLayout);
}
在這裏你可以設置任何你想要的任何片段。有了這個,你將不會有任何片段類型不匹配。
此外,您可以按照Android開發人員提供的官方NavigationDrawer示例。
http://developer.android.com/training/implementing-navigation/nav-drawer.html
希望它有幫助。
感謝這一點,但我仍然不能似乎得到它的工作。 – TheCrazyZimbo
也許我看錯了,有沒有更好的方式做我想做的事情? – TheCrazyZimbo
是的,您可以使用包含ListView的簡單片段,並在您的Fragment生命週期的onCreateView方法中引用它。無論如何,我已經告訴你這是一個正常的NavigationDrawer實現。 – axierjhtjz
- 1. 導航抽屜
- 2. 安卓繪製一個矩形導航抽屜菜單項
- 3. 安卓在導航抽屜中顯示listFragment
- 4. 安卓導航抽屜「漢堡包」不可見
- 5. 安卓導航抽屜上的自定義工具欄
- 6. (安卓)導航抽屜多窗格佈局
- 7. 拉出安卓應用導航抽屜上的標籤
- 8. 安卓導航抽屜右側不工作
- 9. 安卓導航抽屜,改變文字/懸停顏色
- 10. 安卓:互動與內容視圖時導航打開抽屜
- 11. 我想從抽屜式導航安卓刪除滾動模式
- 12. 安卓導航抽屜沒有顯示標題欄在kitkat
- 13. 安卓導航抽屜圖標色調的單個項目
- 14. 安卓抽屜導航菜單項點擊不起作用
- 15. 安卓工具欄圖像居中與導航抽屜按鈕
- 16. 安卓導航抽屜不想被點擊
- 17. 如何更改安卓導航抽屜項目
- 18. 安卓導航抽屜沒有打開活動變化
- 19. 安卓導航抽屜觸發區域太小
- 20. 安卓導航抽屜指示器不是純白色
- 21. ActionbarSherlock導航抽屜
- 22. Android導航抽屜?
- 23. 從導航抽屜
- 24. Android導航抽屜
- 25. 導航抽屜,ResourceNotFoundException
- 26. 安卓抽屜切換
- 27. 導航抽屜與導航抽屜片段
- 28. 導航欄故障
- 29. 安卓與simpleadapter的故障
- 30. 在導航抽屜中導航錯誤?
你是什麼意思與怪胎出?你有一些堆棧跟蹤,錯誤或類似的東西? – axierjhtjz
當我懸停在我遇到的錯誤是不兼容的類型,當我嘗試運行項目我得到 錯誤:不兼容的類型 要求:片段 找到:EastgateFragment 據我所知,是我鏈接項目在導航抽屜的片段,並在該片段我必須鏈接到另一個Java類,是對的。如果是這樣我不知道如何做到這一點 – TheCrazyZimbo