我已经使用Fragment
. 第一个选项卡有 aEditText
和 a button
。如果用户在 中输入内容EditText
并单击button
它会转到第二个选项卡。onButtonClick
我已设置显示第二个选项卡,但我的值未更新。虽然我已经成功地将第一个选项卡值写入session
. 但不知道如何更新第二个标签?如何重建第二个选项卡?
在这里添加了我的代码:
在 FragmentA 我 onButtonClick 我调用了这个函数:
private void goToFragmentB(String 1stTabValue)
{
ViewPager mViewPager = (ViewPager) getActivity().findViewById(R.id.pager);
// My 2nd tab has a TextView where I need to set the 1stTabValue. What should be the code
// to set 1stTabValue in 2nd tab
mViewPager.setCurrentItem(1);
}