如何为Android类中的片段生成id或标记

时间:2013-07-06 03:25:04

标签: android android-fragments

我知道在xml中生成片段id的方法,但是如何在java类中完成? 因为它喜欢public class MenuFragment extends Fragment{}。我想通过findFragmentByTag或findFragmentById稍后使用它们

1 个答案:

答案 0 :(得分:1)

    // Create a constant in class MenuFragment        
    public final static String TAG = "MenuFragmentTag";

以后可以使用findFragmentByTag创建片段:

getFragmentManager().findFragmentByTag(MenuFragment.TAG);