当我在同一个标签页上点击它时,我正在尝试获取有关如何刷新标签主机内容视图的帮助。
答案 0 :(得分:0)
嘿,您可以将要恢复的内容放在onresume方法中。 像..
protected void onResume()
{
// TODO Auto-generated method stub
super.onResume();
ls.setFocusable(false);
}
或
protected void onResume()
{
// TODO Auto-generated method stub
super.onResume();
i1.setImageDrawable(getResources().getDrawable(R.drawable.radioinactive));
i2.setImageDrawable(getResources().getDrawable(R.drawable.radioinactive));
i3.setImageDrawable(getResources().getDrawable(R.drawable.radioinactive));
i4.setImageDrawable(getResources().getDrawable(R.drawable.radioinactive));
i5.setImageDrawable(getResources().getDrawable(R.drawable.radioinactive));
}