我知道在xml中生成片段id的方法,但是如何在java类中完成?
因为它喜欢public class MenuFragment extends Fragment{}
。我想通过findFragmentByTag或findFragmentById稍后使用它们
答案 0 :(得分:1)
// Create a constant in class MenuFragment
public final static String TAG = "MenuFragmentTag";
以后可以使用findFragmentByTag创建片段:
getFragmentManager().findFragmentByTag(MenuFragment.TAG);