2013-09-01 2 views

ответ

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

} 
+0

спасибо, но я хочу, чтобы обновить tabhost активность, когда я нажимаю назад на нем – user2736900

+0

http://stackoverflow.com/questions/8853927/how-to -refresh-tabhost-активность – Nil

Смежные вопросы