我想從活動導航到片段,下方是圖片鏈接,其中我突出顯示了用於導航到片段top_news的代碼部分,但是在選擇活動時沒有任何事情發生。如何從活動中轉到片段
我不理解如何調用top_news
片段的語法。
請幫忙。
我想從活動導航到片段,下方是圖片鏈接,其中我突出顯示了用於導航到片段top_news的代碼部分,但是在選擇活動時沒有任何事情發生。如何從活動中轉到片段
我不理解如何調用top_news
片段的語法。
請幫忙。
試試這個,這只是一個例子讓根據您的編碼相同。
SearchFragment searchFrag = new SearchFragment();
if(searchFrag != null){
getSupportFragmentManager().beginTransaction().replace(R.id.fragmentContainer, searchFrag)
.addToBackStack(null).commit();
}
我想要去top_news.java片段,那麼我的片段容器是什麼? – user2978343
容器是其中一個用來取代片段,此代碼添加到活動 '<的FrameLayout 機器人:ID = 「@ + ID/fragmentcontainer」 機器人:layout_width = 「match_parent」 機器人:layout_height = 「match_parent」 > FrameLayout>' –
fragment_top_news是佈局...所以fragment_top_news是容器ID? – user2978343
請在問題中包含您的代碼。不要使用圖片代碼。並在當前輸出中包含一些圖片。包括您的預期輸出。這樣,其他人可以輕鬆幫助你解決問題。 – UmarZaii
您能否展示代碼,您已經擁有了?所以別人可以幫助你更好。 –
您必須在問題中編寫代碼,以便社區可以嘗試幫助您。 –