我已成功获得3个标签+寻呼机。
其中一个标签是一个List片段,如何使用onclick方法更新片段,并且仍能保留标签?
答案 0 :(得分:1)
您无法替换布局文件中静态定义的片段。您只能替换通过FragmentTransaction动态添加的片段。as here
您只能替换“动态添加的片段”。
private void addDynamicFragment() {
// TODO Auto-generated method stub
// creating instance of the HelloWorldFragment.
Fragment fg = HelloWorldFragment.newInstance();
// adding fragment to relative layout by using layout id
getFragmentManager().beginTransaction().add(R.id.layout, fg).commit();
}
因此,如果要添加动态片段,请参阅此示例 检查此link