Android片段 - findFragmentByTag始终返回null

时间:2013-08-20 09:25:08

标签: android android-fragments android-support-library

我已经浏览了一下并发现了几个类似主题的问题,但在我的案例中没有任何帮助。 我正在尝试使用 getSupportFragmentManager()。findFragmentByTag(TAG)访问现有的活动片段,但它总是返回 null 。对类似问题的回复表明,执行提交需要一段时间,因此如果过早调用,调用findFragmentByTag将返回null。我尝试了两件事:

  • 添加 getSupportFragmentManager()。executePendingTransactions()
    提交后立即,但仍然得到 null
  • 添加了一个按钮...在创建活动后按此按钮 注册的片段和显示的视图应该离开 系统有足够的时间提交。但我仍然得到 null

这是我的活动:

public class MainActivity extends ActionBarActivity {

private static final String F_SETTINGS = "f_settings";

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_main);

    Button btn = (Button) findViewById(R.id.btn);
    btn.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            debug();
        }
    });

    if (savedInstanceState == null) {
        FSettings newFragment = new FSettings();
        FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
        ft.replace(R.id.container, newFragment);
        ft.addToBackStack(F_SETTINGS);
        ft.commit();
        // getSupportFragmentManager().executePendingTransactions();
        //// Activating this did not make any difference...
    }

    debug();
}

private void debug() {
    String txt = "null";
    Fragment frag = getSupportFragmentManager().findFragmentByTag(F_SETTINGS);
    if (frag != null) {
        txt = frag.toString();
    }
    Log.i("Testing", txt);
}

}

我在这里做错了什么? 干杯, 最大

1 个答案:

答案 0 :(得分:20)

在你的代码中,你没有在替换方法中提到标签所以,
使用这种片段替换方法的结构

ft.replace(R.id.container, newFragment,"fragment_tag_String");

请参阅此链接以获取更多信息。 fragment replace with tag name