0

Im新的行動酒吧,並選擇了ActionBar Sherlock,因爲它可以在舊的Android模型上工作。我主要是iOS開發人員,所以如果我使用一些相關術語,我表示歉意。混亂與行動酒吧導航 - 內部導航

我有三個選項卡具有三個獨立的片段,片段1,片段2,片段3

我可以使用ActionBar TabsViewPager的三個片段之間導航。我想知道在一個片段內導航的設計是什麼 - 例如,片段1有一個按鈕,點擊時會導致片段1a。我是否啓動了一項新活動或新碎片的意圖?或者有不同的方式來做到這一點。

我也想保持一個設計,保持與含有片段1,片段2和片段3

很抱歉,如果我還沒有給予足夠的信息頂部標籤的操作欄。

更新 基本上,如何用點擊一個按鈕替換片段1與片段1a。

回答

2

從Android開發者文檔:

// Create new fragment and transaction 
Fragment newFragment = new ExampleFragment(); 
FragmentTransaction transaction = getFragmentManager().beginTransaction(); 

// Replace whatever is in the fragment_container view with this fragment, 
// and add the transaction to the back stack 
transaction.replace(R.id.fragment_container, newFragment); 
transaction.addToBackStack(null); 

// Commit the transaction 
transaction.commit(); 
+0

非常感謝您提供這些信息,因此片段交易是導航過程。 – DevC

-1

從片段中,您可能會要求您的活動轉換到其他片段。切換到需要的選項卡。見getActivity

+0

所以從片段1到斷片1A我會用一個意圖去另一個片段(片段1A)? – DevC