我正在尝试将新的导航抽屉添加到我的应用程序中,而不是更改图像(如谷歌示例中所示),我设法更改片段内的布局。
问题是,在更改布局后,我无法访问布局内的按钮和其他对象。
如何访问当前膨胀布局中显示的按钮和其他对象,并设置侦听器?
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
{
switch(pageNum)
{
case 0: rootView = inflater.inflate(R.layout.groups_layout, container, false);
break;
case 1: rootView = inflater.inflate(R.layout.schedule_layout, container, false);
break;
case 2: rootView = inflater.inflate(R.layout.courses_layout, container, false);
break;
}
theView = rootView;
return rootView;
}
}
提前致谢。