0
我知道在xml中生成片段的標識的方法,但是如何在java類中執行此操作? 由於它喜歡public class MenuFragment extends Fragment{}
。而我想findFragmentByTag或findFragmentById使用它們後來如何在Android類中爲片段生成標識或標籤
我知道在xml中生成片段的標識的方法,但是如何在java類中執行此操作? 由於它喜歡public class MenuFragment extends Fragment{}
。而我想findFragmentByTag或findFragmentById使用它們後來如何在Android類中爲片段生成標識或標籤
// Create a constant in class MenuFragment
public final static String TAG = "MenuFragmentTag";
以後它可以用於創建使用findFragmentByTag片段:
getFragmentManager().findFragmentByTag(MenuFragment.TAG);
謝謝you.But如果有很多碎片,代碼會很難看。那麼有沒有更好的方法來解決這個問題? – Marshall
嘿,這是我知道什麼時候片段沒有在XML中定義的唯一途徑。 – Permita