0

当我在同一个选项卡上单击返回时,我正在尝试获取有关如何刷新选项卡主机内容视图的帮助。

4

1 回答 1

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));

}
于 2013-09-01T13:06:50.267 回答