我是 Fragments 的新手,几天来一直在尝试解决这个问题。我正在尝试在单击列表视图时更新我的片段,并且与此非常相似: 片段中的片段不刷新 左侧的列表视图和右侧的选项卡式 ui。这是我的片段之一:
public static class DescriptionFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_section_description, container, false);
text = ((TextView) rootView.findViewById(R.id.description));
text.setText(Html.fromHtml(description_text));
return rootView;
}
我如何调用这个片段(从主活动内部),以便更新 onCreateView 并更新 textview 'text'?任何帮助是极大的赞赏
注意:列表视图不是片段,只是平板电脑的单独布局文件。我唯一的片段(例如 DescriptionFragment)用于选项卡