我正在尝试在android studio的选项卡式模板中的选项卡中添加列表视图。 为此,我也使用片段(列表)模板。但我无法连接这两个。
创建片段(列表)模板。我得到了以下文件。
MyItemRecyclerViewAdapter.java
,
ItemFragment.java
,
fragment_item.xml
,
fragment_itemm_list.xml
我更新了oncreateView for tabbing,如下所示。
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
if (getArguments().getInt(ARG_SECTION_NUMBER) == 3) {
View rootView = inflater.inflate(R.layout.fragment_item, container, false);
return rootView;
}
View rootView = inflater.inflate(R.layout.fragment_main, container, false);
TextView textView = (TextView) rootView.findViewById(R.id.section_label);
textView.setText(getString(R.string.section_format, getArguments().getInt(ARG_SECTION_NUMBER)));
return rootView;
}
但我没有得到任何东西,即在第三个标签上获得空白页面。