在活動組中使用片段時,用一個片段替換另一個片段有時會帶來挑戰。本文重點在於解決片段替換無法顯示新片段的問題。
問題:
嘗試取代活動群組中的片段時,使用提供的程式碼,新片段不可見,儘管程式碼執行時沒有錯誤。
分析:
XML 佈局中硬編碼的片段無法動態取代。要替換片段,需要動態添加片段。
解決方案:
要解決這個問題,應該動態添加片段,而不是依賴硬編碼XML 版面。以下程式碼片段示範如何動態替換片段:
// Create new fragment and transaction Fragment newFragment = new ExampleFragment(); FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); // Replace whatever is in the fragment_container view with this fragment, // and add the transaction to the back stack if needed transaction.replace(R.id.fragment_container, newFragment); transaction.addToBackStack(null); // Commit the transaction transaction.commit();
注意: R.id.fragment_container 是您在新增片段的Activity 中選擇的佈局或容器
透過這種方法,可以動態替換片段,確保新片段在交易時可見。
以上是為什麼我的新片段在活動群組中替換後沒有顯示?的詳細內容。更多資訊請關注PHP中文網其他相關文章!